MVC3 中上传大文件

MVC3中上传大文件,发现文件超过10M就不能上传。文件上传的限制也改了,仍然不起作用。解决办法如下:

第一步:在web.config中添加:

<system.web>   
  <!-- The request length is in kilobytes, execution timeout is in seconds  -->  
  <httpRuntime maxRequestLength="100240" executionTimeout="500" />
 
</system.web>
第二步:在web.config中添加:
<system.webServer>   
     <security>      
           <requestFiltering>     
   <!-- The content length is in bytes  --> 
                   <requestLimits  maxAllowedContentLength="150485760"/>     
 </requestFiltering>  
  </security>  
</system.webServer>

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。