IIS 查询参数过长的解决办法

  <system.web>
    <httpRuntime maxQueryStringLength="2097151"/>
  </system.web>
  <system.webServer>
    <security>
      <requestFiltering>
        <requestLimits maxQueryString="2097151"/>
      </requestFiltering>
    </security>
  </system.webServer>

猜你喜欢

转载自blog.csdn.net/slwsss/article/details/90436956
IIS