Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   ASP .Net (http://www.velocityreviews.com/forums/f29-asp-net.html)
-   -   Show how many visitors are online! (http://www.velocityreviews.com/forums/t78613-show-how-many-visitors-are-online.html)

Luis E Valencia 05-19-2004 08:38 PM

Show how many visitors are online!
 
I want to show how many visitors do I have at my website, If the user is
logged I must show it on the list. If there 5 users not logged I must show 5
Guests.




Curt_C [MVP] 05-19-2004 08:57 PM

Re: Show how many visitors are online!
 
it will NEVER be fully accurate...
just add (+1) to a counter in a field, file, etc with the session starts and
remove it with the session on_end

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com


"Luis E Valencia" <luisvalen@haceb.com> wrote in message
news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl...
> I want to show how many visitors do I have at my website, If the user is
> logged I must show it on the list. If there 5 users not logged I must show

5
> Guests.
>
>
>




Luis E Valencia 05-19-2004 09:09 PM

Re: Show how many visitors are online!
 
php nuke does it, there must be away to do it with asp.net


"Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl...
> it will NEVER be fully accurate...
> just add (+1) to a counter in a field, file, etc with the session starts

and
> remove it with the session on_end
>
> --
> Curt Christianson
> Owner/Lead Developer, DF-Software
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl...
> > I want to show how many visitors do I have at my website, If the user is
> > logged I must show it on the list. If there 5 users not logged I must

show
> 5
> > Guests.
> >
> >
> >

>
>




Curt_C [MVP] 05-19-2004 09:24 PM

Re: Show how many visitors are online!
 
it does it but it's not accurate... it never will be.
WWW isn't a statefull system. User connects, page renders, user disconnects,
repeat as needed.
fire up a php nuke site once, connect and make sure user goes +1, then hit
the X in the browser.
Reconnect, most likely it did not go (-1) yet, not until the session times
out.



--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com


"Luis E Valencia" <luisvalen@haceb.com> wrote in message
news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl...
> php nuke does it, there must be away to do it with asp.net
>
>
> "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
> news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl...
> > it will NEVER be fully accurate...
> > just add (+1) to a counter in a field, file, etc with the session starts

> and
> > remove it with the session on_end
> >
> > --
> > Curt Christianson
> > Owner/Lead Developer, DF-Software
> > Site: http://www.Darkfalz.com
> > Blog: http://blog.Darkfalz.com
> >
> >
> > "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl...
> > > I want to show how many visitors do I have at my website, If the user

is
> > > logged I must show it on the list. If there 5 users not logged I must

> show
> > 5
> > > Guests.
> > >
> > >
> > >

> >
> >

>
>




Luis E Valencia 05-20-2004 02:04 PM

Re: Show how many visitors are online!
 
Anyway tell me how to do it in code please
"Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
news:Oi5yhcePEHA.1340@TK2MSFTNGP12.phx.gbl...
> it does it but it's not accurate... it never will be.
> WWW isn't a statefull system. User connects, page renders, user

disconnects,
> repeat as needed.
> fire up a php nuke site once, connect and make sure user goes +1, then hit
> the X in the browser.
> Reconnect, most likely it did not go (-1) yet, not until the session times
> out.
>
>
>
> --
> Curt Christianson
> Owner/Lead Developer, DF-Software
> Site: http://www.Darkfalz.com
> Blog: http://blog.Darkfalz.com
>
>
> "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl...
> > php nuke does it, there must be away to do it with asp.net
> >
> >
> > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
> > news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl...
> > > it will NEVER be fully accurate...
> > > just add (+1) to a counter in a field, file, etc with the session

starts
> > and
> > > remove it with the session on_end
> > >
> > > --
> > > Curt Christianson
> > > Owner/Lead Developer, DF-Software
> > > Site: http://www.Darkfalz.com
> > > Blog: http://blog.Darkfalz.com
> > >
> > >
> > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> > > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl...
> > > > I want to show how many visitors do I have at my website, If the

user
> is
> > > > logged I must show it on the list. If there 5 users not logged I

must
> > show
> > > 5
> > > > Guests.
> > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>




Curt_C [MVP] 05-20-2004 02:29 PM

Re: Show how many visitors are online!
 
http://www.google.com/search?sourcei...%22+user+count

--
Curt Christianson
Owner/Lead Developer, DF-Software
Site: http://www.Darkfalz.com
Blog: http://blog.Darkfalz.com


"Luis E Valencia" <luisvalen@haceb.com> wrote in message
news:OJOdaNnPEHA.808@tk2msftngp13.phx.gbl...
> Anyway tell me how to do it in code please
> "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
> news:Oi5yhcePEHA.1340@TK2MSFTNGP12.phx.gbl...
> > it does it but it's not accurate... it never will be.
> > WWW isn't a statefull system. User connects, page renders, user

> disconnects,
> > repeat as needed.
> > fire up a php nuke site once, connect and make sure user goes +1, then

hit
> > the X in the browser.
> > Reconnect, most likely it did not go (-1) yet, not until the session

times
> > out.
> >
> >
> >
> > --
> > Curt Christianson
> > Owner/Lead Developer, DF-Software
> > Site: http://www.Darkfalz.com
> > Blog: http://blog.Darkfalz.com
> >
> >
> > "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> > news:uu8POWePEHA.3012@tk2msftngp13.phx.gbl...
> > > php nuke does it, there must be away to do it with asp.net
> > >
> > >
> > > "Curt_C [MVP]" <software_AT_darkfalz.com> escribió en el mensaje
> > > news:#XaN1NePEHA.3012@tk2msftngp13.phx.gbl...
> > > > it will NEVER be fully accurate...
> > > > just add (+1) to a counter in a field, file, etc with the session

> starts
> > > and
> > > > remove it with the session on_end
> > > >
> > > > --
> > > > Curt Christianson
> > > > Owner/Lead Developer, DF-Software
> > > > Site: http://www.Darkfalz.com
> > > > Blog: http://blog.Darkfalz.com
> > > >
> > > >
> > > > "Luis E Valencia" <luisvalen@haceb.com> wrote in message
> > > > news:uECsuEePEHA.3328@TK2MSFTNGP09.phx.gbl...
> > > > > I want to show how many visitors do I have at my website, If the

> user
> > is
> > > > > logged I must show it on the list. If there 5 users not logged I

> must
> > > show
> > > > 5
> > > > > Guests.
> > > > >
> > > > >
> > > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>




mhr.live@gmail.com 09-23-2011 01:55 PM

Re: Show how many visitors are online!
 
this one is better one , its simple and accurate not like others http://www.eaglestats.com/


All times are GMT. The time now is 04:30 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57