Hits Today: 1 Total: 23797 | Updated: 3/4/1999 | |
 | So you want to tell your users how many people are currently on your site. Here is how it is done. It is nice and easy with only a few lines of code and no need for database interaction. Just use the Session Object to keep count! Author: Gary Williams Code: ASP 2.0 & VBScript |
Hits Today: 1 Total: 5740 | Updated: 9/24/2001 | |
 | I have seen many active users scripts but they seem to use the session_onend and session_onstart subs in the global.asa to function. This is a pity because most FREE providers do not support global.asa because of resource consumption on the servers Author: Craig Bovis Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 1384 | Updated: 11/15/2005 | |
 | This little piece of code calculates number of active users, it uses application level variables rather than slower, less efficient session variables. There is also no need for changes to global.asa file. Code: ASP 3.0 & VBScript | |  | |
Hits Today: 1 Total: 5430 | Updated: 8/26/2001 | |
 | I have intentionally tried to leave out any specific code relating to any specific language, and the examples of where I did use a bit of code Im sure you will be able to get the gist of what Im trying to get across to you... Author: Robert Chartier Code: ASP 3.0 & VBScript |
Hits Today: 2 Total: 333 | Updated: 2/3/2007 | |
 | If you are reading this page then I shall assume that you already know a little bit about ASP and running ASP applications. This tutorial will teach you how to create a Graphical Session Hit Counter using ASP. Author: Bruce Corkhill Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 5908 | Updated: 8/19/2000 | |
 | John builds off the ideas from his previous article, "Counting Active Users." The code is well commented, and available to download. Author: John Peterson Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 4525 | Updated: 11/26/2000 | |
 | "Like most of our topics, I'm covering this one due to user demand for it. If you've been to any one of a few dozen ASP-based sites recently, you've probably seen an example of the script we've going to cover in this article..." Author: John Code: ASP 3.0 & VBScript | |  | |
Hits Today: 2 Total: 1738 | Updated: 6/28/2005 | |
 | Many people ask me how I do this so here is the code I use. There is not a lot to this and this isn't going to give you a totally accurate count, but it works well enough. I find that the busier your site is the more accurate you will find it to be. Author: PowerASP Code: ASP 3.0 & VBScript |
Hits Today: 1 Total: 3099 | Updated: 7/30/2002 | |
 | This script counts the number of active users on a site. When a new user arrives at the site, a new session is created for them and the number of active users is incremented. Author: Jeff Anderson Code: ASP 3.0 & VBScript |
|