Skip to main content

How to prevent execution timeout with Asp.net application

·53 words·1 min

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).