maxRequestLength的最大值?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maxRequestLength的最大值?相关的知识,希望对你有一定的参考价值。
如果我们使用IIS 7和.Net Framework 4,那么maxRequestLength
的最大值是多少?
答案
根据MSDN,默认值为4096 KB(4 MB)。
UPDATE
至于Maximum,因为它是一个int数据类型,理论上你可以达到2,147,483,647。另外,我想确保您知道IIS 7使用maxAllowedContentLength来指定file upload size。默认情况下它设置为30000左右,大约30MB并且是一个uint,理论上它应该允许最大值为4,294,967,295
另一答案
最大值为2097151,如果尝试设置更多错误发生。
另一答案
这两个设置让我上传1GB mp4视频。
<system.web>
<httpRuntime maxRequestLength="2097152" />
</system.web>
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="2147483648" />
</requestFiltering>
</security>
</system.webServer>
另一答案
2,147,483,647字节,因为该值是有符号整数(Int32)。这可能超出你的需要。
另一答案
正确的价值如下。 (试过)
maxRequestLength="2147483647" targetFramework="4.5.2"/>
以上是关于maxRequestLength的最大值?的主要内容,如果未能解决你的问题,请参考以下文章
哪个优先,maxRequestLength 或 maxAllowedContentLength?
ASP.net HTTP 404 - 找不到文件而不是 MaxRequestLength 异常