这是我设置maxRequestLength
为 2GB(最大值)的地方,它表示 ASP.NET 支持的最大请求大小:
<system.web>
<httpRuntime maxRequestLength="2097151" executionTimeout="3600"/>
...
在这里我将 设置maxAllowedContentLength
为 4GB(最大值),它指定了 IIS 支持的请求中的最大内容长度
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="4294967295"/>
</requestFiltering>
</security>
...
我希望能够上传最大 4GB 的文件,但我受到该maxRequestLength
领域的限制。
我注意到这个第三方上传工具 (http://www.element-it.com/onlinehelp/webconfig.html) 有一个ignoreHttpRuntimeMaxRequestLength
属性,允许它上传最大 4GB 的文件。
有谁知道我是否可以maxRequestLength
像其他上传工具一样忽略该值?