asp.net web.config中有2个部分,我正在寻找关于它们实际代表的内容(位或字节)的确定词。第一个:
<system.webServer>
<security>
<requestFiltering>
<requestLimits maxAllowedContentLength="?" />
</requestFiltering>
</security>
</system.webServer>
第二个:
<system.web>
<httpRuntime maxRequestLength="?" requestValidationMode="2.0" />
</system.web>
'?'显示了我不理解的值,如果他们谈论的是位或字节。
任何建议和支持文章:-)都会非常有用。
皮特
答案 0 :(得分:7)
根据MSDN:
-says kilobytes
requestLimits Element for requestFiltering [IIS 7 Settings Schema]
-says bytes
答案 1 :(得分:1)
maxRequestLength
:最大请求大小(以KB为单位)。默认大小为4096 KB(4 MB)。
maxAllowedContentLength
:
指定请求中内容的最大长度(以字节为单位)。默认值为30000000。