太阳照大神

导航

asp.net mvc 上传大文件保存的解决方法

文件上传报错:超过了最大请求长度

解决方案,需要修改web.config的两个地方,如下

  <system.web>  
<httpRuntime maxRequestLength="1073741824" executionTimeout="3600"/>
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
<validation validateIntegratedModeConfiguration="false" />
<modules runAllManagedModulesForAllRequests="true" />
</system.webServer>



posted on 2011-09-25 12:12  太阳照大神  阅读(599)  评论(0编辑  收藏  举报