码迷,mamicode.com
首页 > Web开发 > 详细

Asp.net相关知识和经验的碎片化记录

时间:2017-09-20 12:00:46      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:not found   nbsp   asp   logs   结合   筛选   col   碎片   配置文件   

1、解决IIS7.0下HTTP 错误 404.15 - Not Found 请求筛选模块被配置为拒绝包含的查询字符串过长的请求”问题

方案1:在程序的web.config中system.web节点里面插入 

<httpRuntime maxRequestLength="999999999" maxQueryStringLength="2097151" />

 代码。再次运行,失败

方案2:对IIS 中的applicationHost.config 配置文件进行配置(慎用)。再次运行,失败

方案3:在程序的web.config中configuration节点里面插入

<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483647" maxQueryString="2147483647"/>
</requestFiltering>
</security>
</system.webServer>

 代码。再次运行,失败

最终解决办法:方案1 + 方案3 的结合体,再次尝试,运行通过。

 

Asp.net相关知识和经验的碎片化记录

标签:not found   nbsp   asp   logs   结合   筛选   col   碎片   配置文件   

原文地址:http://www.cnblogs.com/yuzhihui/p/7560231.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!