版权所有©连云港市新港电力辅机有限公司
地址:连云港市洪门工业园区 邮编:222004
电话:0518-85281680 85281681 13705138398 传真:0518-85281682
Email:
jslyg@xgdlfj.com 网站设计:
中国风
<%
CountFile=Server.MapPath("jsq.txt")
''文件jsq.txt是用来储存数字的文本文件,初始内容一般是0
Set FileObject=Server.CreateObject("Scripting.FileSystemObject")
Set Out=FileObject.OpenTextFile(CountFile,1,FALSE,FALSE)
counter=Out.ReadLine
''读取计数器文件中的值
Out.Close
''关闭文件
SET FileObject=Server.CreateObject("Scripting.FileSystemObject")
Set Out=FileObject.CreateTextFile(CountFile,TRUE,FALSE)
Application.lock
''方法Application.lock禁止别的用户更改计数器的值
counter= counter + 1
''计数器的值增加1
Out.WriteLine(counter)
''把新的计数器值写入文件
Application.unlock
''使用方法Application.unlock后,允许别的用户更改计数器的值
Response.Write("
")
Response.Write("您是第")
Response.Write("")
Response.Write(" ")
Response.Write("
")
Response.Write("")
Response.Write(counter)
''把计数器的值传送到浏览器,以红(black)色显示给用户
Response.Write("")
Response.Write("")
Response.Write(" ")
Response.Write("
")
Response.Write("位访客")
Response.Write("")
Out.Close
''关闭文件
%>
苏ICP备
05004203