Monday, 2 April 2012

How to increase the asp.net Runtime execution timout value

We can increase the asp.net session time out value by adding the following entry in the web.config file 
<system.web>
  <httpRuntime executionTimeout="1300"/>
</system.web>

Time interval is in Seconds .The default is "00:01:50" (110 seconds).

No comments:

Post a Comment