Wat is the default value for session timout? And how and where can I set the timeout value for session??? Plz, tell me in detail
+1
A:
In the web.config.
<sessionState timeout="number of minutes" ...>
<providers>...</providers>
</sessionState>
The default is 20 minutes.
Andy West
2009-12-18 05:12:11
A:
The default value is 20 minutes. You can set it in the sessionState's timeout attribute.
Yuriy Faktorovich
2009-12-18 05:13:35
A:
in the web.config --> system.web section, you need to specify in mintuus, like...
<sessionState timeout="20"></sessionState>
Muhammad Akhtar
2009-12-18 05:15:37
+1
A:
default 20 minutes which is reset with each request
Include this in you web.config file:
<system.web>
<sessionState timeout="540"/>
REad this forum for more:
RSK
2009-12-18 05:15:44