How do I prevent resetting Session timeout when UpdatePanel's content is refreshed by a Timer event? - Stack Overflow most recent 30 from stackoverflow.com2009-12-23T09:12:43Zhttp://stackoverflow.com/feeds/question/770594http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/770594/how-do-i-prevent-resetting-session-timeout-when-updatepanels-content-is-refreshe0How do I prevent resetting Session timeout when UpdatePanel's content is refreshed by a Timer event?Brian2009-04-21T00:19:57Z2009-07-17T11:23:37Z
<p>We have several pages in our ASP.net Ajax application which auto refresh the UpdatePanels contents based on a timer event but the problem is that we have a requirement to timeout the web session and the auto refresh is preventing that.</p>
<p>Is there a way to prevent the timer postback event from modifying the web session or any other alternate solution to allow the web session to timeout while auto refreshing the UpdatePanel contents?</p>
<p>Here is an example to illustrate this problem. I set the session timeout to 3 minutes and have a timer in the UpdatePanel that ticks every minute and modifies the contents of the UpdatePanel based on the current state. After logging in, I navigate to this page and do nothing for 5 minutes and then try and click on another page and I am still logged in since the session didn't time out.</p>
http://stackoverflow.com/questions/770594/how-do-i-prevent-resetting-session-timeout-when-updatepanels-content-is-refreshe/770616#7706161Answer by knut for How do I prevent resetting Session timeout when UpdatePanel's content is refreshed by a Timer event?knut2009-04-21T00:31:41Z2009-04-21T23:09:08Z<p>You may track the activity of the user on the client side. If there is no mouse move etc. you could log the user out using the <code><a href="http://msdn.microsoft.com/nb-no/library/bb310861(en-us).aspx" rel="nofollow">Sys.Services.AuthenticationService</a></code> class (part of Microsoft AJAX Library 1.0). You could pop a confirmation before you do the actual log out, so that the user may cancel it if he is present. When logged out you could pop a message to the user saying that he was automatically logged out because of inactivity.</p>
<p>How my solution would solve your scenario:</p>
<p>You set the session timeout to 3 minutes and have a timer in the UpdatePanel that ticks every minute and modifies the contents of the UpdatePanel based on the current state. After logging in, you navigate to this page and do nothing. After 3 minutes of no activity you pop a confirmation to the user asking him to cancel automatic log out using the <code>Sys.Services.AuthenticationService</code>. If the user still takes no action you log him out after a few seconds. You pop a "logged out message" that the user will see when he returns to the browser after 5 minutes. When he then click on another page he is not logged in.</p>
http://stackoverflow.com/questions/770594/how-do-i-prevent-resetting-session-timeout-when-updatepanels-content-is-refreshe/1142688#11426880Answer by vijal for How do I prevent resetting Session timeout when UpdatePanel's content is refreshed by a Timer event?vijal2009-07-17T11:23:37Z2009-07-17T11:23:37Z<p>hello ,
I am also having the same problem can you please let me know what solution did you find.
Would really appreciate your help.
Thanks
Vij</p>