currenet viewrs count
-
hi, i want to know viewsrs count at a particular time who r viewing my site thanks in adv
-
hi, i want to know viewsrs count at a particular time who r viewing my site thanks in adv
Yes. You can. use
Global.asax
file, There is a functionSession_Start()
use some counter to count to number of variable, that is the number of user currently viewing your side. becuase, whenever a user hit the url, from Session_Start() a session will be created.cheers, Abhijit
-
Yes. You can. use
Global.asax
file, There is a functionSession_Start()
use some counter to count to number of variable, that is the number of user currently viewing your side. becuase, whenever a user hit the url, from Session_Start() a session will be created.cheers, Abhijit
you can use application variable for this purpose and increase in appliation variable on session_onstart() and decreament on session_onend() and your session mode in web.config file must be set to inproc otherwise session_onend() wont call...
umerumerumer