Multy Users ???

alexk

Freshman
Joined
Jul 23, 2002
Messages
34
Location
Israel
My ASP.NET application provides 3 aspx pages to users.
How can I know:
How many users use my application now?
What page each user see now?
And how to know when any user leav the page or application?

Thanks
 
alexk said:
My ASP.NET application provides 3 aspx pages to users.
How can I know:
How many users use my application now?
What page each user see now?
And how to know when any user leav the page or application?

Thanks
Try to use an Integer variable in the Global section.
OnSessionStart
i++
OnSessionEnd
i--
 
Back
Top