快精灵印艺坊 您身边的文印专家
广州名片 深圳名片 会员卡 贵宾卡 印刷 设计教程
产品展示 在线订购 会员中心 产品模板 设计指南 在线编辑
 首页 名片设计   CorelDRAW   Illustrator   AuotoCAD   Painter   其他软件   Photoshop   Fireworks   Flash  

 » 彩色名片
 » PVC卡
 » 彩色磁性卡
 » 彩页/画册
 » 个性印务
 » 彩色不干胶
 » 明信片
   » 明信片
   » 彩色书签
   » 门挂
 » 其他产品与服务
   » 创业锦囊
   » 办公用品
     » 信封、信纸
     » 便签纸、斜面纸砖
     » 无碳复印纸
   » 海报
   » 大篇幅印刷
     » KT板
     » 海报
     » 横幅

用多种方式制作WEB页面的计数器

Do you like to know how many users visited your site? Creating a Web counter is very easy thing to do
using ASP. The only thing you have to do is to use an application server variable called count, this
variable will have the value zero when your application is started for the first time, and every time anew
visitor will come to your site the count variable will be incremented, the increment section will be
written in the Session_OnStart in the Global.asa through three steps:
¨ Lock the application server so no more than one visitor will try to increase it at the same time.
¨ Increment the count variable by one.
¨ Unlock the variable.
And that’s all what you have to do to create a simple counter and here is the code.
First let us do the Global.asa section:

<SCRIPT LANGUAGE=VBScript RUNAT=Server>
Sub Session_OnStart
\\\' Lock the Application object
Application.Lock

\\\' Increment the count
Application("count") = Application("count") + 1

\\\' Unlock the Application object
Application.Unlock
End Sub
</SCRIPT>


And now to show the result you just need to retrieve the count variable like this in your web page:
<%@ language="vbscript"%>
<HTML>
<HEAD>
<TITLE>Counter Example 1</TITLE>
</HEAD>
<BODY>
<H1> You are the visitor number <%=Application("count")%></H1>
</BODY>
</HTML>


Another way to do it:

Ok that’s very nice, but what will happen if the application stops for any reason? You will lose all the
data stored in the application variables and that includes the count variable. To solve this problem I
will use another way, you need to store the value of the count variable with in a text file or database.
For me I prefer database so I will use an MS access database with a table of one field called count and
the field called counter of type NUMBER.

<%
\\\' Declare the variables that will be used with our code
Dim Connection, RS, ConStr, Counts

\\\' Create and open the database connection
Set Connection=Server.Createobjec t("ADODB.Connection")
ConStr=("DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=" & Server.MapPath ("counter.mdb"))
Connection.Open ConStr

\\\' Create the record set and retrive the counter value
Set RS = Connection.Execute("SELECT * FROM count")

\\\' Increase the counter value by one
Counts=RS("counter")+1

\\\' Update the counter value in the database
Set RS = Connection.Execute ("UPDATE count SET counter =" & Counts)
Connection.Close
%>

<HTML>
<HEAD>
<TITLE>Counter Example 2</TITLE>
</HEAD>
<BODY>
<H1>You are the visitor number <%=Counts%></H1>
</BODY>
</HTML>

What about Active users:

Some guys wants to know how many visitors are currently seeing the site, for that we will use another way,
we will create an application variable called active, and on each new session we will increase it by one
and when a session ends we will decrease it by one, and here is the code:

The Global.asa:
<SCRIPT LANGUAGE="VBScript" RUNAT="Server">

Sub Application_OnStart
\\\'Create the variable that will hold the number of active visitors
Application("Active") = 0
End Sub

Sub Session_OnStart
\\\'Increase the counter by one
Application.Lock
Application("Active") = Application("Active") + 1
Application.UnLock

End Sub

Sub Session_OnEnd
\\\' Decrease the c ounter
Application.Lock
Application("Active") = Application("Active") - 1
Application.UnLock
End Sub

</SCRIPT>


And to show the results just call the Application variable active in your web page just like this:
<%= Application("Active")%>

I hope you can create your own counters from now on. Give it try and good luck.
返回类别: 教程
上一教程: 临时表操作的一些见解
下一教程: 用ASP检查MDAEMON系统治理员登录

您可以阅读与"用多种方式制作WEB页面的计数器"相关的教程:
· ASP建立WEB页面计数器
· LINE 的计数器源程序(附源代码)
· LINE 的计数器源程序(附源代码)
· 命令行方法读取WEB页面
· ASP制作多用户版计数器
    微笑服务 优质保证 索取样品