在Web.config中增加下面两个配置后,重启IIS即可。
1.修改http请求数据大小限制
<system.web>
<httpRuntime maxRequestLength="50000000" />
</system.web>
2.如果数据序列化格式为Json,请增加:
<system.web.extensions> <scripting> <webServices> <jsonSerialization maxJsonLength="500000000"/> </webServices> </scripting> </system.web.extensions>
时间: 2024-10-30 16:23:54