| 网站合作、内容监督、商务咨询:13794831899 Copyright © 2008--2011 东莞市天达顺服装经营部版权所有 粤ICP证09031998号 |
<%
一个简单的计数器程序
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)
%>