使用了imagelib组件! <% site_id=Request.QueryString("site_id") if isempty(site_id) then Response.End end if
Set Sistema = CreateObject("Scripting.FileSystemObject") set ILIB = server.createobject("Overpower.ImageLib") path=server.MapPath("../保存计数文件的路径/") CounterFile=path & "/count_"& site_id &".txt" contagem = 0 if Sistema.FileExists(counterfile) then Set arquivo = Sistema.GetFile(counterfile) Set texto = arquivo.OpenAsTextStream(1, -2) contagem = texto.readline texto.close end if contagem = contagem + 1
Set texto = sistema.CreateTextFile(counterfile, true, false) texto.writeline contagem texto.close
texto = contagem if contagem > 1 then texto = texto textolen=len(texto) for i=1 to 8-textolen texto="0" & texto next
Set Sistema =nothing set ILIB =nothing Set arquivo = nothing Set texto = nothing %> 本计数器使用了ImageLib组件,在使用程序前需要先注册该组件; 假如说你将文件保存为count.asp,然后在与count.asp,然后通过下面代码引用本计数器: <img src="path/count.asp?site_yoursite" border=0>