码迷,mamicode.com
首页 > Web开发 > 详细

IIS配置文件上传大小限制

时间:2018-08-28 14:26:10      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:编辑   time   图片   配置文件   inf   enter   导致   ima   配置   

2018-08-28

IIS配置文件上传大小限制

问题:上传文件过大导致上传不了,直接在webconfig里做以下配置会导致程序出错,这个需要在IIS里配置

  <system.web>  
    <httpRuntime maxRequestLength="20480" targetFramework="4.5" />  
  </system.web>

 

步奏:

1、在iis里点开配置编辑器

技术分享图片

2、在system.web/httpRuntime 节点下找到以下配置项,设置文件大小。(1M = 1024K)

技术分享图片

 

 结果在webconfig里会多出该节点

  <system.web>  
    <httpRuntime maxRequestLength="20480" targetFramework="4.5" />  
  </system.web>

 

 

 

 

 

 

IIS配置文件上传大小限制

标签:编辑   time   图片   配置文件   inf   enter   导致   ima   配置   

原文地址:https://www.cnblogs.com/i-mengli/p/9547682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!