场景:
服务器iis 7 及以上
浏览器谷歌94及以上
可以在应用程序的webconfig中做如下配置:
1.主要在httpRuntime标签中添加 maxRequestLength="2097151" maxQueryStringLength="200000"
<system.web>
<httpRuntime targetFramework="4.8" maxRequestLength="2097151" maxQueryStringLength="200000" />
.....
</system.web>
2.在<system.webServer>标签内添加如下配置:
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="100000000" maxQueryString="2147483647"></requestLimits>
</requestFiltering>
</security>
如果使用了iis中的ARR反向代理则需要在反向代理的网站中也添加如上配置
注意:反向代理的配置的位置,是在网站配置的还是在网站下的应用程序中配置
将上面的xml放在 相应的webconfig中