pantherrulz
New Member
How to find if the system is idle for few minutes? what i need is, i want to kick the user out when his/her system is idle for few minutes (say 3 min) and kill that session.<BR>Kindly help..<BR>thx<BR>PhilipYou can probably specify this through the Web.Config file for the site.<BR><BR>If not, in the global.asax, in the Session_OnStart event, do:<BR>Session.Timeout = 3<BR><BR>I think that's based on minutes... check the documentation.