标签:
In system.web
<httpRuntime maxRequestLength="1048576" executionTimeout="3600" />And in system.webServer
<security>
    <requestFiltering>
        <requestLimits maxAllowedContentLength="1073741824" />
    </requestFiltering>
</security>IMPORTANT : Both of these values must match. In this case, my max upload is 1024 megabytes.
maxRequestLength has 1048576 KILOBYTES, and maxAllowedContentLength has 1073741824 BYTES.
IIS: 配置web.config解决Maximum request length exceeded错误
标签:
原文地址:http://www.cnblogs.com/ilovewindy/p/4874630.html