The solution to the too long IIS query parameters

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

Guess you like

Origin blog.csdn.net/slwsss/article/details/90436956