查询字符串太长
我配置了web.config
文件,但仍然出现错误:
请求过滤在Web服务器上配置为拒绝请求,因为查询字符串太长。
maxRequestLength
用于文件上传。
试试这个,而不是在system.web
节点下
<httpRuntime maxUrlLength="1000" maxQueryStringLength="1000" />
你可以这样做来增加限制
<security >
<requestFiltering>
<requestLimits maxAllowedContentLength="[Bytes]" />
</requestFiltering>
</security>
链接地址: http://www.djcxy.com/p/7261.html