69pao国产精品视频-久久精品一区二区二三区-精品国产精品亚洲一本大道-99国产综合一区久久

自制的點擊計數器

代碼:

<%

Set FS=Server.CreateObject("Scripting.FileSystemObject")

Set RS=FS.OpenTextFile(Server.MapPath("counter.txt"), 1, False)

fcount=RS.ReadLine

RS.Close

 

fcount=fcount+1

 

'This code is disabled due to the write access security on our server:

'Set RS=FS.OpenTextFile(Server.MapPath("counter.txt"), 2, False)

'RS.Write fcount

'RS.Close

 

Set RS=Nothing

Set FS=Nothing

 

%>

<!DOCTYPE html>

<html>

<body>

<p>

This page has been visited <%=fcount%>  times.

</p>

</body>

</html>

結果:

This page has been visited 12345 times.

相關文章