how can find the how many users are access company intranet site ie
http://logo/default.htm ?
by the ServerVariables("logon_user") can find the logon user at server.
name = Request.ServerVariables("logon_user")
user = mid(name, 9, (len(name)-8))
Response.Write(user)
Response.End
on the server some employees are working at company intranet site ie
http://logo/default.htm
and some are working other work at server.
I frequently update the intranet site at server I working
at client site I want to find out that how many users are access intranet site ie
http://logo/default.htm ?
how can do in asp ?
regards.
Mateen