首页 > 网站 > 建站经验 > 正文

asp简单文、本计数器

2019-11-02 14:56:06
字体:
来源:转载
供稿:网友

<% 
Set fs = CreateObject("Scripting.FileSystemObject")
Wfile=server.mappath("") & "cgi-binwww.111cn.cn/asp/asp.html.txt"
on error resume next

三个字网名[www.la240.com/html2017/1/26/]

Set a = fs.OpenTextFile(Wfile)
hits = Clng(a.ReadLine)
hits = hits + 1
a.close

if error then
hits = 1
end if

Set a = fs.CreateTextFile(Wfile,True)
a.WriteLine(hits)
a.Close
%>
 

Number of hits: <% =hits %>

人数在您的文件将增加到每一次您的网页访问。最后一行在此脚本可以让您将显示的点击次数在您的回复页面。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表