How does an ASP website obtain the number of online users?

Source: Internet
Author: User
My global. asa file is as follows:
<Script language = "VBScript" RUNAT = "Server">
'Session _ OnStart: run when the customer runs any page of ASP Application for the first time
'Session _ OnEnd when a client's Session times out or exits the application
'Application _ OnStart is run when any customer accesses the homepage of the Application for the first time.
'Application _ OnEnd: run when the website's WEB server is closed
Sub Application_OnStart
VisitorCountFilename = Server. MapPath ("../VisitCount.txt ")
Set FileObject = Server. CreateObject ("Scripting. FileSystemObject ")
Set Out = FileObject. OpenTextFile (VisitorCountFilename, 1, FALSE, FALSE)
Application ("visitors") = Out. ReadLine
Application ("NowPeopleNumber") = 0
Application ("VisitorCountFilename") = VisitorCountFilename
End Sub
'================================================ ============================
SUB Application_OnEnd
Set FileOutObject = Server. CreateObject ("Scripting. FileSystemObject ")
Set Out = FileOutObject. CreateTextFile (Application ("VisitorCountFilename"), TRUE, FALSE)
Out. WriteLine (application ("visitors "))
End Sub
'================================================ ============================
Sub Session_OnStart
Session. Timeout = 30
Application ("visitors") = Application ("visitors") + 1
Application ("NowPeopleNumber") = Application ("NowPeopleNumber") + 1
Session ("ID") = Session. SessionID
Session ("UserName") = 0' does not exist
End Sub
'================================================ ============================
Sub Session_OnEnd
Application ("NowPeopleNumber") = Application ("NowPeopleNumber")-1
End Sub
</SCRIPT>
The total number of visitors in this example will be stored in the visitcount.txt file. I think the Application ("NowPeopleNumber") should have saved
The number of online users can be displayed on the home page, but I found that when I close my browser and open the home page
The number of online users increased by 1. That is to say, Session_OnEnd is not executed. Why? There are other ways to get
Online users? Thank you for posting this article for the first time.

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.