ASP編寫計數(shù)器的實例分享
作者: 來源: 發(fā)布時間:2011-6-9 15:15:38 點擊:
下面提供的是關(guān)于ASP編寫計數(shù)器的實例代碼分享,對ASP感興趣的朋友可以照著試一試。
<%
dim fso,f,no,I '定義變量絕對是個好習(xí)慣
Set fso = CreateObject("Scripting.FileSystemObject") '建立對象的實例
Set f = fso.OpenTextFile(Server.MapPath("count.no"), 1, True) '建立文本文件,打開為只讀.
if f.AtEndOfStream then '判斷這個文件是否不存在
no=1
else
no=f.ReadLine
no=no+1
end if
f.Close
set f=fso.OpenTextFile(Server.MapPath("count.no"),2,True) '準(zhǔn)備寫
f.Write(no) '寫入
f.Close
'改進標(biāo)志1
no=CStr(no) '整齊數(shù)字
for i=1 to 5-len(no)
no="0"&no
next
%>
<font color=white size=3pt>你是第<font color=red><%=no%></font>個來客</font>
上一篇:教你利用ASP隱藏文件實際下載路徑 下一篇: 教你使用ASP和IIS設(shè)置目錄安全
[收藏此文章]