.net 图片太大导致的无法上传

<system.web >
  <!--单位:KB 3072 = 3MB   默认是4MB, 最大支持2GB-->
  <httpRuntime targetFramework="4.5" maxRequestLength="3072" executionTimeout="3600" />
</system.web >

<system.webServer>
  <security>
    <requestFiltering>
      <!--单位:字节B  2147483648=2 GB 默认是4MB,最大支持2GB-->
      <requestLimits maxAllowedContentLength="2147483648" /> </requestFiltering>
  </security>
</system.webServer>
原文地址:https://www.cnblogs.com/lbx6935/p/12874800.html