Author: spook_man | Posted on: 7/2/2010 10:05:38 AM | Views : 847

Hello,
I used http://www.4guysfromrolla.com/articles/041608-1.aspx as a guide and have something configured to show me the users which are logged into the system.  This uses the aspnet_Users.LastActivityDate column to see when someone last did something on the system.  It also uses the userIsOnlineTimeWindow within the web.config to determine whether a user is online or not.
But because of this userIsOnlineTimeWindow limitation of .NET, even when someone logs out of the system or closes their browser window, the system still sees them as being online.  Also, if they are on a page and don't do anything for 10 minutes, the system will show them offline until they refresh their page or go to another page.
Anyone know of a better, more real-time way to tracking users which are logged in, logged out, etc?
I don't want to wait 10 minutes for the system to show that a ...

Go to the complete details ...