%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
<%
''====================== 20070214 zhengyun=========================
''Set fs=CreateObject("Scripting.FileSystemObject")
''Set a=fs.openTextFile(server.mappath("count/count.txt"))
''count=a.readline
''application("count")=application("count")+1
Set fs=CreateObject("Scripting.FileSystemObject")
Set a=fs.openTextFile(server.mappath("count/count.txt"))
count=a.readline
count=count+1
application("count") = count
set ts=fs.createtextfile(server.mappath("count/count.txt"),true)
ts.writeline(count)
ts.close
''================================================================
%>
index