在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
IIS 7 默认文件上传大小时30M
要突破这个限制: 1. 修改IIS的applicationhost.config 打开 %windir%\system32\inetsrv\config\applicationhost.config 找到: <requestFiltering>节点, 这个节点默认没有 <requestLimitsmaxAllowedContentLength="上传大小的值(单位:byte)" /> 元素,IIS 7和IIS 7.5上测试过 最大值只能是<requestLimits maxAllowedContentLength="4294967295" /> <4GB, 为这个节点新增如下事例元素:<requestLimitsmaxAllowedContentLength="2147483647" /> ,上传的大小将改为2G 注意: %windir%\system32\inetsrv\config\applicationhost.config 文件一定不要用其他机器的文件替换,否则IIS将无法启动 此文件记录了,当前IIS中所有Site , App pool的信息,还有一些与机器相关的配置。 2 修改web.config <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.
<system.webServer> <security> <requestFiltering> <requestLimitsmaxAllowedContentLength="2147483647" /> </requestFiltering> </security> </system.webServer>
总结:asp.net(IIS 7 and IIS 7.5)上传文件的最大值不能超过2GB |
请发表评论