Snitz Forums 2000
Snitz Forums 2000
Home | Profile | Register | Active Topics | Members | Search | FAQ
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 Snitz Forums 2000 MOD-Group
 MOD Add-On Forum (W/Code)
 MOD: Active users..
 New Topic  Topic Locked
 Printer Friendly
Author Previous Topic Topic Next Topic  

szinski
Starting Member

12 Posts

Posted - 07 April 2001 :  12:43:56  Show Profile
Plain and easy with soe VB code:
1:st create global.asa place it the root:
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">

Sub Application_OnStart
' Set our user count to 0 when we start the server
Application("ActiveUsers") = 0
End Sub

Sub Session_OnStart
' Change Session Timeout to 20 minutes (if you need to)
Session.Timeout = 20
' Set a Session Start Time
' This is only important to assure we start a session
Session("Start") = Now
' Increase the active visitors count when we start the session
Application.Lock
Application("ActiveUsers") = Application("ActiveUsers") + 1
Application.UnLock
End Sub

Sub Session_OnEnd
' Decrease the active visitors count when the session ends.
Application.Lock
Application("ActiveUsers") = Application("ActiveUsers") - 1
Application.UnLock
End Sub

</SCRIPT>

Now add this to your default.asp:
<%= Application("ActiveUsers") %></FONT> Active Users


(taken from http://www.asp101.com./resources/active_users.asp)

Flaimo
New Member

Austria
72 Posts

Posted - 01 June 2001 :  19:05:14  Show Profile  Visit Flaimo's Homepage  Send Flaimo an AOL message  Send Flaimo an ICQ Message  Send Flaimo a Yahoo! Message
maybe someone knows how to use the global asa to also remember those, who are registered at the board and display their names. something like the other active users MOD, only based on the global.asa file...

flaimo,

http://flaimo.com/famousfonts
Go to Top of Page
  Previous Topic Topic Next Topic  
 New Topic  Topic Locked
 Printer Friendly
Jump To:
Snitz Forums 2000 © 2000-2021 Snitz™ Communications Go To Top Of Page
This page was generated in 0.13 seconds. Powered By: Snitz Forums 2000 Version 3.4.07