首页 > Web开发 > 详细

设置上传文件大小

时间:2021-09-02 06:41:39      阅读:18      评论:0      收藏:0      [点我收藏+]

ASP.NET中maxRequestLength和maxAllowedContentLength的区别;上传大文件设置IIS7文件上传的最大大小

 <system.web>
  <httpRuntime maxRequestLength="2147483647" executionTimeout="3600" ></httpRuntime>
 </system.web>

<system.webServer>
 <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2147483647" />
      </requestFiltering>
    </security>
</system.webServer>

设置上传文件大小

原文:https://www.cnblogs.com/vvull/p/15211433.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!