小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

計(jì)數(shù)器源代碼

 清清牧晨 2006-04-17
計(jì)數(shù)器源代碼
AspScript和AspVBscript其實(shí)是同一個(gè)東西,asp腳本一般用VBScript編寫(xiě),也有的用java script編寫(xiě)(功能是一樣的),不過(guò)用vbs的比較多。
你要加計(jì)數(shù)器的話(huà),要看你購(gòu)買(mǎi)的空間支持哪些腳本
一般win2000主機(jī)支持ASP(即VBScript),cgi等,linux主機(jī)支持php,jsp,cgi。  

如果你確定使用支持asp的空間,就要找asp編寫(xiě)的計(jì)數(shù)器。
站點(diǎn)的訪問(wèn)計(jì)數(shù)器一般比較簡(jiǎn)單。
下面是一個(gè)簡(jiǎn)單的基于文本的圖形計(jì)數(shù)器,統(tǒng)計(jì)次數(shù)放在一個(gè)文本文件count.txt里
這個(gè)計(jì)數(shù)器包括如下文件:
counter.asp ---執(zhí)行計(jì)數(shù)功能
count.txt---存放數(shù)字
c0.gif,c1.gif.....c9.gif ---0-9的圖形,你要是想換成漂亮的計(jì)數(shù)器,只要替換這些圖形就可以

下面是計(jì)數(shù)器counter.asp的源代碼(需要你的空間支持FSO功能)
<html>
<head>
<title>counter</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#000000" text="#000000">
<%
dim visitors,fs
whichfile=server.mappath("count.txt")
Set fs = CreateObject("Scripting.FileSystemObject")
Set thisfile = fs.OpenTextFile(whichfile)

visitors=thisfile.readline
thisfile.close

countlen=len(visitors)
countsize=7
if countlen<countsize and i<countlen then
for j=1 to (countsize-countlen)
res0402ponse.write "<img src=""c0.gif""></img>"
next
for i=1 to countlen
res0402ponse.write "<img src=""c" & mid(visitors,i,1) & ".gif""></img>"
next
end if

visitors=visitors+1
Set out=fs.CreateTextFile(whichfile)
out.WriteLine(visitors)
out.close

set fs=nothing
%>
</body>
</html>

你可以把上面這些文件都放到一個(gè)count目錄里面,便于管理
顯示的時(shí)候在網(wǎng)頁(yè)需要顯示計(jì)數(shù)器的位置插入如下源代碼
<iframe bgcolor="#000000" src="count/counter.asp"  width="63" height="15" marginwidth="0" marginheight="0" frameborder="0" scrolling="no"></iframe>

一個(gè)簡(jiǎn)單的計(jì)數(shù)器就可以使用了。

希望對(duì)大家有點(diǎn)用...

    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶(hù)發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買(mǎi)等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶(hù) 評(píng)論公約

    類(lèi)似文章 更多