版權所有©連云港市新港電力輔機有限公司
地址:連云港市洪門工業園區 郵編: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