如何在iis7.5和mvc3中上传最多4千兆字节的文件 注意:我已经maxAllowedContentLength
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295" />
</requestFiltering>
</security>
</system.webServer>
<httpRuntime maxRequestLength="4194304" />
但我仍然无法上传大小为3.71千兆档案的文件
有什么我忘记做的事吗?????
答案 0 :(得分:2)
ASP.NET(即使是.NET 4版本)也有2 GB的限制!
此外,在上传大型文件时,您最好考虑使用一些(第三方)工具,使您的上传更加稳定。这使您的用户也更加快乐。
我已经读过.NET 4.5应该支持更大的文件。但是我仍然会为我的用户提供这样的插件:http://neatupload.codeplex.com