我目前的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,而不是一次设置一个?
答案 0 :(得分:3)
您可以直接在Configuration section
下添加,这将为所有页面设置。
<system.web>
<httpRuntime maxRequestLength="65536" executionTimeout="3600"/>
</system.web>
答案 1 :(得分:2)
在你的基础/父<system.web>
部分中进行。