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

3

I'm having an error submitting the form, it returns a MaxQueryString error.

Is there any way to increase this number / remove this limitation? because \ web.config \ is already set high and is not advancing.

    
asked by anonymous 09.12.2014 / 14:51

1 answer

3

You can change this limit in Web.Config by changing the maxQueryString and maxUrl values that are the URL string size, .Config:

<configuration>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxQueryString="3000" maxUrl="1000" />
</requestFiltering>
</security>
</system.webServer>
</configuration>

Font

    
09.12.2014 / 14:57