I have a system where I need to see active users, so I created a web page to see the logged in users
In the main ASP.NET application I record the login time when they sign on and logout time when they sign off or the session ends
When the close the browser I need to log them off, (update their logout timestamp)
Hence I need to trap the browser close click , which I do
I have posted previously and found a solution to track the browser click
https://www.experts-exchange.com/questions/26612638/How-to-detect-browser-close-in-ASP-NET.html
https://www.experts-exchange.com/questions/26614273/How-to-detect-browser-close-in-ASP-NET-wth-master-pages-login-form.html
http://www.codingforums.com/showthread.php?t=37279
I need to find a way how to update the database when the user goes to Task Manager and kills the browser session any code sample will be great
Please note my app has a login page, master page and few other aspx pages that use the master page.