asp利文本文档加FSO统计网站访问量的方法(2)
网络 2009/9/15 8:21:17 深山行者 字体:
大 中 小 浏览 10291
1.新建count.txt文件文档
<%
response.write "您是本页的第"&counter()&"位访客"
function counter()
whichfile=server.mappath("count.txt")
'打开文件并将其值读取,最后关闭连接释放资源
set fso=createobject("Scripting.FileSystemObject")
set openfile=fso.opentextfile(whichfile,1)
visitors=openfile.readline
openfile.close
'页面显示记数内容并做加1运算
visitors=visitors+1
'将新的数值添加写入到文本,最后关闭所有连接释放资源
set creatfile=fso.createtextfile(whichfile)
creatfile.writeLine(visitors)
creatfile.close
set fso=nothing
counter=visitors
end function
%>
- 相关阅读
- 计算ASP页面执行时间
- 利用css制作简易相册
- XHTML+CSS兼容性解决方案小集
- 会员系统
- 支持火狐,IE6.ie7.ie8.ie9的加入收藏/设为首页代码
- 舞阳风情旅行社
- uni-app基础知识事件传参(动态参数演示)
- 利用CSS中的Clip属性来创造各种多彩的文字
- 共有0条关于《asp利文本文档加FSO统计网站访问量的方法(2)》的评论
- 发表评论