ASP Online Headcount Statistics application

Source: Internet
Author: User

Many beginners have asked the number of online statistics how to do? In fact, a lot of methods, useful database, a lot of BBS are using Database plus cookie+session to verify, but we only do simple statistics in the ASP there is a application global variable, this very good to do, OK, let's take a look at a simple example.

<script language= "VBScript" runat= "Server" >
Sub Application_OnStart
Application. Lock ()
Application ("online") =0
Application. UnLock ()
End Sub
Sub Application_OnEnd
Application. Lock ()
Application ("online") =0
Application. UnLock ()
End Sub
Sub Session_OnStart
Application ("Online") =application ("online") +1
End Sub
Sub Session_OnEnd
Application ("Online") =application ("online")-1
End Sub
</script>

This phase we want to display in the page <%=application ("online")%> OK.

Statement: Original site reproduced please specify www.111cn.net

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.