The request filtering module is configured to deny a request where the query string is too long.

来源:互联网 发布:java截取字符串的函数 编辑:程序博客网 时间:2024/05/17 06:12

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>
阅读全文
0 0
原创粉丝点击