3
I have an error sending the form, it returns an error MaxQueryString
.
Is there any way to increase this number/remove this limitation? because on web.config a high value is already set and it is not helping.
3
I have an error sending the form, it returns an error MaxQueryString
.
Is there any way to increase this number/remove this limitation? because on web.config a high value is already set and it is not helping.
3
You can change this limit on the Web.Config by changing the values of the maxQueryString and maxUrl which is the "size" of the URL string, I get an example on the Web.Config:
<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="3000" maxUrl="1000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>
it is possible to leave unlimited?
Browser other questions tagged c# asp.net querystring
You are not signed in. Login or sign up in order to post.
Related: http://answall.com/questions/35573/
– Bacco