如何在 iis7.5 和 mvc3 中上传最多 4 GB 的文件注意:我已经 maxAllowedContentLength
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
</requestFiltering>
</security>
</system.webServer>
<httpRuntime maxRequestLength="4194304" />
但我仍然无法上传大小为 3.71 giga 的文件
有什么我忘记做的吗??????