BITS / BYTES中的请求限制是?

时间:2010-12-06 16:34:17

标签: c# asp.net iis iis-7 iis-6

asp.net web.config中有2个部分,我正在寻找关于它们实际代表的内容(位或字节)的确定词。第一个:

<system.webServer>
   <security>
   <requestFiltering>
    <requestLimits maxAllowedContentLength="?" />
   </requestFiltering>
  </security>
</system.webServer>

第二个:

<system.web>
     <httpRuntime maxRequestLength="?" requestValidationMode="2.0" />
</system.web>

'?'显示了我不理解的值,如果他们谈论的是位或字节。

任何建议和支持文章:-)都会非常有用。

皮特

2 个答案:

答案 0 :(得分:7)

答案 1 :(得分:1)

maxRequestLength:最大请求大小(以KB为单位)。默认大小为4096 KB(4 MB)。

maxAllowedContentLength: 指定请求中内容的最大长度(以字节为单位)。默认值为30000000。