How to prevent execution timeout with Asp.net application
Mar 10, 2012
1 minute read

How to prevent execution timeout with Asp.net application

There is two solutions :

  • Execute your page with Visual Studio (there will never be any timeout).
  • Add this into your web.config (under the system.web tag) :
<httpRuntime executionTimeout="300" />

In this case the execution timeout is set to 300 seconds (so 5 minutes).



comments powered by Disqus