主题:  有关计数器

liu5221

职务:普通成员
等级:1
金币:0.0
发贴:30
#12002/7/31 11:22:22
<%application.Lock()
set f_object= Server.CreateObject("scripting.FileSystemObject")
path=Server.MapPath("counter.txt")
set file1=f_object.OpenTextFile(path)
application("counter")=file1.Readline
file1.close
application("counter")=application("counter")+1
counter=application("counter")
set file1=f_object.CreateTextFile(path,true)**********ie老报这一行错误,如果把这下两行删除,也可以正常运行。
file1.WriteLine counter
application.UnLock()
response.write counter
%>



liu5221

职务:普通成员
等级:1
金币:0.0
发贴:30
#22002/7/31 13:52:54
因为这一行是写入,是否与站点设置有关?



39150731

职务:普通成员
等级:1
金币:0.0
发贴:4
#32002/7/31 22:50:52
请问:这是一个计数器吗?把这段代码放进网页里就可以记数了?



liu5221

职务:普通成员
等级:1
金币:0.0
发贴:30
#42002/8/1 11:17:38
yes,不过你要建一个counter.txt的文本放在同级下



5D荣誉版主

职务:普通成员
等级:2
金币:10.0
发贴:658
#52002/8/2 13:46:26
好像大多数的服务器已经禁止使用FSO这个有安全问题的组件了。