HttpSessionState.Timeout Property
.NET Framework 3.0
Gets and sets the amount of time, in minutes, allowed between requests before the session-state provider terminates the session.
Namespace: System.Web.SessionState
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
The Timeout property can be set in the Web.config file for an application using the timeout attribute of the sessionState configuration element, or you can set the Timeout property value directly using application code.
The Timeout property cannot be set to a value greater than 525,600 minutes (1 year). The default value is 20 minutes.
The following code example sets the timeout session attribute to 30 minutes in the Web.config file.
<configuration>
<system.web>
<sessionState
mode="InProc"
cookieless="true"
timeout="30" />
</system.web>
</configuration>
The following code example sets the HttpSessionState.Timeout property to 45 minutes.
Community Additions
ADD
Show: