在web.config中为所有页面设置全局maxRequestLength值

时间:2010-06-02 18:40:57

标签: .net asp.net web-config

我目前的web.config位置部分设置如下

<location path="page1.aspx">
  <system.web>
    <httpRuntime maxRequestLength="65536" executionTimeout="3600"/>
  </system.web>
</location>
<location path="page2.aspx">
  <system.web>
    <httpRuntime maxRequestLength="65536" executionTimeout="3600"/>
  </system.web>
</location>

 etc

每页有一个条目。

如何为所有页面设置maxRequestLength,而不是一次设置一个?

2 个答案:

答案 0 :(得分:3)

您可以直接在Configuration section下添加,这将为所有页面设置。

<system.web>
  <httpRuntime maxRequestLength="65536" executionTimeout="3600"/>
</system.web>

答案 1 :(得分:2)

在你的基础/父<system.web>部分中进行。