maxRequestLength的最大值?

如果我们使用IIS 7和.Net Framework 4,那么
maxRequestLength
的最大值是多少?     
已邀请:
根据MSDN,默认值为4096 KB(4 MB)。 UPDATE 至于Maximum,因为它是一个int数据类型,理论上你可以达到2,147,483,647。另外,我想确保您知道IIS 7使用maxAllowedContentLength来指定文件上载大小。默认情况下,它设置为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)。这可能超出你的需要。     

要回复问题请先登录注册