iis7.5およびmvc3で最大4ギガバイトのファイルをアップロードするにはどうすればよいですか?注:すでにmaxAllowedContentLengthです
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
</requestFiltering>
</security>
</system.webServer>
<httpRuntime maxRequestLength="4194304" />
しかし、それでもサイズ3.71ギガファイルのファイルをアップロードできません
忘れていることはありますか?????