I configured web.config file but still I got an error:
Request filtering is configured on the Web server to deny the request because the query string is too long.
I configured web.config file but still I got an error:
Request filtering is configured on the Web server to deny the request because the query string is too long.
 
    
     
    
    maxRequestLength is for file uploads.
Try this instead under the system.web node
<httpRuntime maxUrlLength="1000" maxQueryStringLength="1000" />
 
    
    you can do this to increase the limit
 <security >
    <requestFiltering>
      <requestLimits maxAllowedContentLength="[Bytes]" />
    </requestFiltering>
  </security>
