HTTP Error 404.15 - Not Found
The request filtering module is configured to deny a request where the query string is too long.
修改项目中的web.config
maxQueryStringLength="32768" maxUrlLength="65536"
<security>
<requestFiltering>
<requestLimits maxQueryString="32768" />
</requestFiltering>
</security>
解决HTTP 404.15错误
本文介绍如何通过修改web.config文件中的请求过滤模块设置来解决HTTP 404.15错误,该错误通常由于查询字符串过长导致。

被折叠的 条评论
为什么被折叠?



