I am in a C#/ASP.NET environment.
I have a web app that has a series of users logged in - and I have a master user who needs to know the last time all other logged in users went to a page (i.e. makes a Http request). I am able to get a listing of all the users through a set of session variables through the Application variable - but I am unable to get much else from it...
I know I could make a bunch of session variables through the Application variable or make a hash table within a single Application/Session variable and maintain it as needed - but I feel like there should be a way to ask the Application or some other object the time of the last request from a target session. The server should be keeping track of this time out time anyway...
The purpose of this mini-system is so that we can see the active users and the approximate time of their time out so we can gauge the effect of taking the site down for updates/repairs.
Any help/insight would be appreciated.