[转载]windows 7 IIS 7.5 ASP.Net 文件上传大小限制

本文介绍如何在Win7环境下使用IIS调整文件上传大小限制。通过修改applicationhost.config和web.config文件,可以将上传文件大小从默认的30MB增加到2GB。文章详细解释了各配置项的作用及可能遇到的问题。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

原文出处:

原文作者:云中岳

原文链接:http://www.cnblogs.com/netlover/archive/2011/07/08/Win7_IIS_Upload.html

IS 7 默认文件上传大小是30M
要突破这个限制:

1. 修改IIS的applicationhost.config

    打开 %windir%\system32\inetsrv\config\applicationhost.config

    找到: <requestFiltering>节点,

  这个节点默认没有 <requestLimits maxAllowedContentLength="上传大小的值(单位:byte)" /> 元素,IIS 7和IIS 7.5上测试过  最大值只能是<requestLimits maxAllowedContentLength="4294967295" />  <4GB,

    为这个节点新增如下示例元素:<requestLimits maxAllowedContentLength="2147483647" /> ,上传的大小将改为2G

注意: %windir%\system32\inetsrv\config\applicationhost.config 文件一定不要用其他机器的文件替换,否则IIS将无法启动

此文件记录了,当前IIS中所有Site , App pool的信息,还有一些与机器相关的配置。

2. 修改web.config

<system.web>
<httpRuntime executionTimeout="36000" maxRequestLength="2097151"/> <!--maxRequestLength:上传的大小,单位K ,executionTimeout:设置超时时间,单位:秒。(默认是90秒) -->
</system.web>

注意:这个maxRequestLength最大值只能是2097151K,设置大于这个值将会出现如下错误:

Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. 
Parser Error Message: The value for the property 'maxRequestLength' is not valid. The error is: The value must be inside the range 0-2097151.
Source Error: 
Line 117:    <httpHandlers />
Line 118:    <customErrors mode="RemoteOnly" />
Line 119:    <httpRuntime executionTimeout="36000" maxRequestLength="4194304" />
Line 120:    <authentication mode="Windows" />
Line 121:    <identity impersonate="true" />

3. web.config下如果有如下节点(此节点是为IIS 7设计的) ,则修改

<requestLimits maxAllowedContentLength="2147483647" /> 单位与applicationhost.config中的<requestLimits maxAllowedContentLength="2147483647" />一致,它的最大值也只能为4294967295
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.webServer>

总结:asp.net(IIS 7 and IIS 7.5)上传文件的最大值不能超过2GB

转载于:https://www.cnblogs.com/Scl891004X/p/6171863.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值