如何修改aspx页面的超时?

Kev*_*ang 8 asp.net timeout

有没有办法手动增加/减少特定aspx页面的超时?

moh*_*edn 8

在web.config中:

   <configuration>
      <location path="~/Default.aspx">
        <system.web>
          <httpRuntime executionTimeout="1000"/>      
        </system.web>    
      </location>
   </configuration>
Run Code Online (Sandbox Code Playgroud)