[Solved] Query string is too long


maxRequestLength is for file uploads.

Try this instead under the system.web node

<httpRuntime maxUrlLength="1000" maxQueryStringLength="1000" />

1

solved Query string is too long