.NET MVC JSON JavaScriptSerializer 字符串的长度超过 maxJsonLength 值问题的解决
https://blog.csdn.net/weixin_34066347/article/details/85982742
文件大小调整后,同时最好也要调整下最大请求限制,如下配置:
<system.web>
<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />
</system.web>