csharp Fix max querystring length exceeded

<?xml version="1.0"?>
<configuration>
	<system.web>
		<httpRuntime requestValidationMode="2.0" executionTimeout="6000" maxQueryStringLength="4096" />
	</system.web>
	<system.webServer>
		<security>
			<requestFiltering>
				<requestLimits maxUrl="4096" maxQueryString="4096" />        
			</requestFiltering>      
		</security>
	</system.webServer>
</configuration>
Use to fix errors regarding max querystring length exceeded. See IIS.net for more information.

Updated: Thursday 19th April 2012, 13:31am

There are 0 comments

Leave a comment of your own

Comments are currently closed.