ASP online Headcount Statistics code

Source: Internet
Author: User

ASP this script, we will be able to know and show the number of active visitors in our page at a particular moment. The script has two parts: a filename Global.asa (check data, "Global.asa" file in this tutorial), and a small code insert you must display on your page the number of active users.

Just copy the Code table to a text file and save it in a Web site ("/Global.asa") in the home directory.

<script language= "VBScript" runat= "Server" >

Sub Application_OnStart
application ("Activevisitors") =0
End Sub

Sub Application_OnEnd
End Sub

Sub Session_OnStart
Application.Lock
application ("Activevisitors") =application ("Activevisitors") +1
Application.UnLock
End Sub

Sub Session_OnEnd
Application.Lock
application ("Activevisitors") =application ("Activevisitors")-1
Application.UnLock
End Sub

</SCRIPT>


In cases where we want to display the number of visitors on our web page, we must use this code:

Add the following in the ASP page. Current online number <% =application (" ")%> person.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.