C# Web API Modify Post Data Size Limit

在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>
上一篇:lvm语法2


下一篇:Python中__name__属性的妙用