Getting Current website connections through .net
-
Hey guys, Is it possible to get the number of current connections to a website using .net? If so, what's the assembly I need for it, I haven't managed to find anything through google yet, but I may be using all the wrong terms... Thanks in advance. Mark
-
Hey guys, Is it possible to get the number of current connections to a website using .net? If so, what's the assembly I need for it, I haven't managed to find anything through google yet, but I may be using all the wrong terms... Thanks in advance. Mark
AFAIK you have to keep track of this yourself using the Session_Start and Session_End event handlers in global.asax - somethign along these lines[^]
-
AFAIK you have to keep track of this yourself using the Session_Start and Session_End event handlers in global.asax - somethign along these lines[^]
Excellent, Thats exactly what I'd just decided to do. Thanks for the reply, at least I know I'm on the right track...