为什么applicationhost.config和web.config修改了maxQueryString后,为什么没有效果
为什么applicationhost.config和web.config修改了maxQueryString后,为什么没有效果,改成了20480后,提交超过2048字符的QueryString后依然会提交失败。
在system.webServer中
<security>
<requestFiltering>
<requestLimits maxQueryString="2097151"/>
</requestFiltering>
</security>
在system.web中
<httpRuntime maxQueryStringLength="2097151" />