Hai,
how to solve this issue..?
The length of the query string for this request exceeds the configured maxQueryString length value
Hi Barathan,
The correct element to modify to reset maxQueryStringLength and url length in web.config is the <httpRuntime> element inside the <system.web> element.
<system.web> <httpRuntime maxUrlLength="1000" maxQueryStringLength="1000" /> </system.web>
Refer below link for more details.
https://msdn.microsoft.com/en-us/library/e1f13641%28v=vs.100%29.aspx
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.