IIS POST大小限制
IIS Post大小限制:maxAllowedContentLength默认30000000字节(约28M), maxRequestLength默认4MB,如果POST的参数很大,比如需要传base64字符串,需要设置这两个参数,系统判断时哪个小采用哪个,
<system.web>
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" enableVersionHeader="false" maxRequestLength="204800" />
</system.web>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="300000000" />
</requestFiltering>
</security>
本文来自博客园,作者:GIS民工,转载请注明原文链接:https://www.cnblogs.com/kook2007/p/17548252.html