请求筛选模块被配置为拒绝超过请求内容长度的请求
错误:请求筛选模块被配置为拒绝超过请求内容长度的请求
web.config 配置
<requestLimits maxAllowedContentLength="2147483647" ></requestLimits>
环境:excel导入
文件大小:28.6MB
求指导
[解决办法]
那不知道 我测试服务器 IIS 7.5 247Mb 没有插件的都没出过问题
<system.web>
<httpRuntime maxRequestLength="2147483647" enableVersionHeader="false"/>
</system.web>
<security>
<system.webServer>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" />
</requestFiltering>
</security>
</system.webServer>