showing who is logged on

  • Thread starter Thread starter Tina
  • Start date Start date
T

Tina

(using 1.1)
I need to show who is logged on to my asp.net application. I'm using forms
authentication. I can add users to an application variable when they log
in. But I need a way to remove them from the list after they have been
inactive for so long.

How can I do that? Is there an easier way to get at what I wan to do?
thanks,
T
 
How can I do that? Is there an easier way to get at what I wan to do?
thanks,

Use the event handlers within the global.asax.

Session start/Session end handlers should do what you want - just log a
record to the database or an application variable when a user logs in : )
 
Back
Top