设计思路:
用一个记事本counter.txt,并在其中记录访问的次数。每次访问将里面的数字加1并保存。
实现方法:
用FSO打开记事本counter.txt,如果不存在则新建。读取其中的数据,赋值给一个变量,如果不存在则设置初始值为零。将数值写入记事本counter.txt
首先新建一个counter.asp文档,输入下面的代码,单引号后面的是注释
<% set fs=Server.CreateObject("Scripting.FileSystemObject") File = Server.MapPath("counter.txt") Set txtr = fs.OpenTextFile(File,1,true)'打开只读文件file,如果不存在则新建 counter=0'将计数器归零 If Not txtr.atEndOfStream Then'先确定还没有到达结尾的位置 Line = txtr.ReadLine '读取一行数据 else line=0 '否则设置初始值为0 End If counter=line+1 '计数加1 set txtw = fs.opentextfile(file,2,true) '打开只写文件file txtw.write counter '写入计数 response.Write("<center>您是第<b>"&counter&"</b>位访客!</center>") '输出计数 %>
在需要统计和显示计数的地方可以用include的方式引入这个文档。
<!--#include file="counter.asp"-->
本站测试地址:http://www.icoa.cn/demo/asp/counter.asp
但是如果是html之类静态页面,则可以通过script脚本的方式来使用这个简单的计数器。
那么Counter.asp则需要这么写了:
<% set fs=Server.CreateObject("Scripting.FileSystemObject") File = Server.MapPath("counter.txt") Set txtr = fs.OpenTextFile(File,1,true)'打开只读文件file,如果不存在则新建 counter=0'将计数器归零 If Not txtr.atEndOfStream Then'先确定还没有到达结尾的位置 Line = txtr.ReadLine '读取一行数据 else line=0 '否则设置初始值为0 End If counter=line+1 '计数加1 set txtw = fs.opentextfile(file,2,true) '打开只写文件file txtw.write counter '写入计数 response.Write("document.write(""<center>您是第<b>"&counter&"</b>位访客!</center>"");") '输出计数,两个""代表输出一个" %>
需要引用的html静态页里可以通过Script脚本来使用计数器:
<script src="counter.asp"></script>
下一篇:An error occurred on the server ASP出错无法显示
上一篇:Win7 IIS7.5 设置步骤详解 成功运行ASP
- 相关文章 -
An error occurred on the server ASP出错无法显示 - 2010-11-10
ASP利用FSO打造最简单的访问计数器 - 2010-10-11
Win7 IIS7.5 设置步骤详解 成功运行ASP - 2010-10-03
换行符、回车符、标点符号、特殊符号等ASP代码 - 2010-09-06
ACCESS数据库ASP链接代码 - 2009-07-31
用 JS 脚本判断浏览器的语言并自动转向 - 2009-07-31
eWebEditor编辑器在IE8/IE7下无法使用解决方法 - 2010-07-28
用ASP程序将html代码转换为文本格式输出 - 2010-07-26
- 文章评论 -
- 最新评论[0条评论] -
版权所有©逍遥峡谷 - 星际中心超自然局 · 地球总部 |
逍遥峡谷 ·
酷品优选
Copyright©Interstellar Central Occult Agency (I.C.O.A)
本局纯属虚构,如有雷同,纯属巧合