How can I see how many users are currently using my website?

RE: website users by AlokKumar

AlokKumar
Mon Jun 20 15:23:07 CDT 2005

use the following code in an asp page.

Total # of concurrent users connected
<%
response.write FormatDateTime(Now, vbLongTime)
%>
is
<%
Response.Write Application("activeusers")
%>


Alok

"Chris" wrote:

> How can I see how many users are currently using my website?

Re: website users by Dave

Dave
Mon Jun 20 16:04:56 CDT 2005

open the personal web manager.

"Chris" <Chris@discussions.microsoft.com> wrote in message
news:811C16FB-95CC-43CA-9AB9-4E07A2981BBD@microsoft.com...
> How can I see how many users are currently using my website?



Re: website users by IIS

IIS
Thu Jun 23 19:49:57 CDT 2005

You can install a statistics package such as Urchin or AWStats
http://www.urchin.com or
http://awstats.sourceforge.net/

You can also setup performance monitoring to track this data.



--
IIS Guru
http://www.iisassistance.com


"Chris" <Chris@discussions.microsoft.com> wrote in message
news:811C16FB-95CC-43CA-9AB9-4E07A2981BBD@microsoft.com...
> How can I see how many users are currently using my website?