IIS 7 默认文件上传大小时30M 要突破这个限制,需要做如下操作:

1. 修改IIS的applicationhost.config     打开 %windir%\system32\inetsrv\config\applicationhost.config或者在C://   system32//inetsrv//config//applicationhost.config   找到: <requestFiltering>节点,   这个节点默认没有 <requestLimits maxAllowedContentLength="上传大小的值(单位:byte)" /> 元素,  最大值只能是<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

posted on 2014-02-18 15:38  求知的我  阅读(447)  评论(0编辑  收藏  举报