“The length of the URL for this request exceeds the configured maxUrlLength value”
![[HttpException (0x80004005): The length of the URL for this request exceeds the configured maxUrlLength value.]](https://www.saotn.org/wp-content/uploads/2025/06/Length_of_URL_for_request_exceeds_maxUrlLength_value-11-768x422.png)
...error by increasing the maximum URL length allowed (maxUrlLength value) in IIS. Add to your web.config file: <configuration> <system.web> <!-- increase max url length --> <httpRuntime maxUrlLength="500" /> </system.web> </configuration>...