版权所有 © 2001-2011 千百度批发网
保留所有权利

千百度批发网 临沂批发市场门户网站
地址:山东省临沂市蒙山大道16号
《中华人民共和国电信业务经营许可证》 编号:鲁备ICP20008569
<%
'一个简单的计数器程序
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)
%>