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