Showing posts with label ASP: Increase Session State. Show all posts
Showing posts with label ASP: Increase Session State. Show all posts

Wednesday, 21 October 2009

ASP: Increase Session State

Increase session state by simply changing the timeout property in the Web.config.
The default is 20mins.

<system.web>
<sessionState timeout ="20" mode ="InProc" />
</system.web>