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.
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.
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>