WebEnh

.net7 mvc jquery bootstrap json 学习中 第一次学PHP,正在研究中。自学进行时... ... 我的博客 https://enhweb.github.io/ 不错的皮肤:darkgreentrip,iMetro_HD
  首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

asp.net mvc Post上传文件大小限制

Posted on 2018-07-12 16:12  WebEnh  阅读(789)  评论(0编辑  收藏  举报

 最近发现在项目中使用jQuery.form插件上传比较大的文件时,上传不了,于是改了下web.config的上传文件最大限制。

<configuration>  
    <system.web>  
        <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" />
    </system.web>  
</configuration>

 改完后还是不能上传,最后在stackoverflow找到了答案,原来还要配置服务端的最大文件限制。

譬如限制最大文件为100M

复制代码
<configuration>  
    <system.web>  
        <httpRuntime maxRequestLength="102400" executionTimeout="200" enable="true" />
    </system.web>  
</configuration>
<system.webServer>  
   <security>  
      <requestFiltering>  
         <requestLimits maxAllowedContentLength="104857600" />  
      </requestFiltering>  
   </security>  
 </system.webServer> 
复制代码

 

 

stackoverflow答案地址:http://stackoverflow.com/questions/23327338/maxrequestlength-for-net-4-5-1-framework