首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

请求淘选模块被配置为拒绝超过请求内容长度的请求

2013-10-31 
请求筛选模块被配置为拒绝超过请求内容长度的请求错误:请求筛选模块被配置为拒绝超过请求内容长度的请求we

请求筛选模块被配置为拒绝超过请求内容长度的请求
错误:请求筛选模块被配置为拒绝超过请求内容长度的请求    
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>

热点排行