Thursday, April 28, 2011

ASP.NET: Change the default session timeout for an application.

According to MSDN, the default timeout for server session is 20 minutes. You might need t ochange it for tha sake of your application. Just make the following change in the applications root level web.config file.

<system.web>
<sessionstate timeout="30">
</system.web>

No comments:

Post a Comment