首页 > Web开发 > 详细

asp.net 中上传文件大小设置,IIS上传文件大小设置

时间:2020-02-26 11:13:50      阅读:128      评论:0      收藏:0      [点我收藏+]

<system.web>

  <httpRuntime requestValidationMode="2.0" maxRequestLength="3072" ></httpRuntime>

  <!--单位:KB 3072=3MB   默认是4MB,最大支持2GB-->

 </system.web>

<system.webServer>

 <security>
      <requestFiltering>
        <requestLimits maxAllowedContentLength="2147483648" />
        <!--单位:字节B  2147483648=2 GB 默认是4MB,最大支持2GB-->
      </requestFiltering>
    </security>

</system.webServer>

asp.net 中上传文件大小设置,IIS上传文件大小设置

原文:https://www.cnblogs.com/roper/p/12365703.html

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