ASP.NET 超过了最大请求长度
<system.web> <!-- 指示 ASP.NET 支持的最大文件上载大小。 该限制可用于防止因用户将大量文件传递到该服务器而导致的拒绝服务攻击。 指定的大小以 KB 为单位。默认值为 4096 KB (4 MB)。 此处改为40M大小的文件上传限制。 --> <httpRuntime targetFramework="4.5" requestValidationMode="2.0" maxRequestLength="2097151" executionTimeout="120" /> </system.web>
<!--请求筛选模块被配置为拒绝超过请求内容长度的请求--> <system.webServer> <security> <requestFiltering > <requestLimits maxAllowedContentLength="2147483647" ></requestLimits> </requestFiltering> </security> </system.webServer>
参考资料: