Wat is the default value for session timout? And how and where can I set the timeout value for sess开发者_JAVA技巧ion??? Plz, tell me in detail
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:
http://forums.asp.net/t/1283350.aspx
In the web.config.
<sessionState timeout="number of minutes" ...>
<providers>...</providers>
</sessionState>
The default is 20 minutes.
The default value is 20 minutes. You can set it in the sessionState's timeout attribute.
精彩评论