0

如何在 iis7.5 和 mvc3 中上传最多 4 GB 的文件注意:我已经 maxAllowedContentLength

<system.webServer>
    <security>
       <requestFiltering>
          <requestLimits maxAllowedContentLength="4294967295" />
        </requestFiltering>
    </security>
</system.webServer>
<httpRuntime maxRequestLength="4194304" />

但我仍然无法上传大小为 3.71 giga 的文件

有什么我忘记做的吗??????

4

1 回答 1

2

ASP.NET(甚至是 .NET 4 版本)有 2 GB 的限制!

此外,在上传如此大的文件时,您最好考虑使用一些(第三方)工具,使您的上传更加稳定。这也使您的用户更快乐。

我读过 .NET 4.5 应该支持更大的文件。但我仍然会为我的用户提供这样的插件:http: //neatupload.codeplex.com

于 2012-09-18T14:30:55.790 回答