我有一个页面,我需要增加执行超时。 所以,为此,我在web.config中设置了以下代码。但它没有用。
<location path="~/Admin/AdminControlPanel.aspx">
<system.web>
<httpRuntime executionTimeout="1200" maxRequestLength="204800" />
</system.web>
</location>
如果我为全局设置相同的executionTimeout,那么它正在工作。
那么任何人都可以指导我为什么它没有特定的工作页面?我想只在一页上做。