.net mvc 超过了最大请求长度 限制文件上传大小

 

 

 

 

 

 

<system.web>
  <!--最大请求长度,单位为kb-->
  <httpRuntime targetFramework="4.6.1" maxRequestLength="2097151" executionTimeout="120"/>
</system.web>

<system.webServer>
  <!--允许上传文件长度,单位字节-->
  <security>
    <requestFiltering >
      <requestLimits maxAllowedContentLength="2147483647" ></requestLimits>
    </requestFiltering>
  </security>
</system.webServer>

 

转载于:https://www.cnblogs.com/linyongqin/articles/9573057.html