Showing posts with label Script to logout and redirect to login page if user is idle for 5minutes.. Show all posts
Showing posts with label Script to logout and redirect to login page if user is idle for 5minutes.. Show all posts

Thursday 30 January 2014

Script to logout and redirect to login page if user is idle for 5minutes.



Keep this script code inside scripting tags.


var CurrentTime = 0; var TimeOut_Time = 300; var refreshIntervalId = setInterval(function () { CurrentTime = CurrentTime + 1; if (CurrentTime == TimeOut_Time) { location.href = '@Url.Content("~/Admin/Logout")'; clearInterval(refreshIntervalId); } }, 1000); $(document).mousemove(function (event) { CurrentTime = 0; }); $(document).keydown(function (event) { CurrentTime = 0; });