IIS Post 大小超出允许的限制

IIS限制默认POST的长度是4096 Byte

在IIS——配置编辑器——system.web/httpRuntime的maxRequestLength

或者在web.config文件中的system.web配置节增加下面语句。
<httpRuntime   maxRequestLength= "1024000 "   executionTimeout= "3600 "   /> 

原文地址:https://www.cnblogs.com/xbzhu/p/9068834.html