版权所有:宁波市广博电视广告制作中心
地址:宁波市江东昌兴街1号5F
电子邮件:guangbo00@yahoo.com.cn
联系电话 :56176800
<%
'一个简单的计数器程序
Set fs=CreateObject("Scripting.FileSystemObject")
Set a=fs.openTextFile(server.mappath("count.txt"))
count=a.readline
response.write "现在的访问量是:" & count
count=count+1
Set fs = CreateObject("Scripting.FileSystemObject")
Set a=fs.createTextfile(server.mappath("count.txt"))
a.writeline (count)
%>