How to close the session in asp.net if computer idle for 5 mins -
i m developing web application using asp.net , want close current user session if computer idle 5 minutes. idle not means web application only, full system means if no keystroke received keyboard 5 mins.
i got info thru google idle tracker in vc++ dont know how use dll in web application. link here.
please guide me how achieve this. want total computer active time , idle time thru asp.net employees productivity report.
it depend on how controlling session, looking @ web.config section
<authentication mode="forms"> <forms loginurl="~/account/login" timeout="2880" /> </authentication>
this allows specify timeout , view return when timed out.