查询字符串太长

我配置了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

上一篇: Query string is too long

下一篇: return View() and return PartialView() mystery MVC5