当你的才华不能撑起你的野心时,就是你该选择学习的时候了!

.Net C#上传文件最大设置

<!--网页允许的最大设置节点-->
<system.web>
  <httpRuntime targetFramework="4.5" maxRequestLength="409600" />
</system.web>
<!--IIS允许的最大设置节点-->
<system.webServer>
  <security>
    <requestFiltering>
      <requestLimits maxAllowedContentLength="2072576000"/><!--2G-->
    </requestFiltering>
  </security>
</system.webServer>

  

posted @ 2019-04-22 13:54  hofmann  阅读(685)  评论(0)    收藏  举报