How do I remove the character limit of a URL by GET or POST

Asked

Viewed 988 times

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.

  • Related: http://answall.com/questions/35573/

1 answer

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>

Source

  • it is possible to leave unlimited?

Browser other questions tagged

You are not signed in. Login or sign up in order to post.