另外还有glable.asa文件中计数器计数文件的路径如何写,counter.txt文件存放在虚拟路径的根目录下
。。。。。。。。。。。。。。。。。。。。。。。。。。
set ts=fs.openTextfile("counter.txt",forreading,True)------这句中
if ts.atendofstream<>true Then
application("counter")=ts.readline
else application("counter")=1
end if
ts.close
set fs=nothing
'application("online")=0
end sub
Sub Application_OnEnd
set fs=server.createobject("Scripting.FileSystemObject")
set ts=fs.createTextFile("counter.txt",true)------------------这句中
。。。。。。。。。。。。。。。。。。。