ASP记录点击数的实现

王朝asp·作者佚名  2006-11-24
宽屏版  字体: |||超大  

在HTML中用法

<a href=counter.asp?save=123&url=http://127.0.0.1/>http://127.0.0.1</a>

共点击次数:<script src=view.asp?save=123></script>

counter.asp

*************************

<%

path="d:data"

file=request("save")

url=request("url")

Set fs = CreateObject("Scripting.FileSystemObject")

if fs.FileExists(path & file & ".txt") then

Set thisfile = fs.OpenTextFile(path & file & ".txt", 1, False)

number=thisfile.readline + 1

thisfile.Close

Set outfile=fs.CreateTextFile(path & file & ".txt")

outfile.WriteLine number

outfile.close

set fs=nothing

else

number=1

Set outfile=fs.CreateTextFile(path & file & ".txt")

outfile.WriteLine number

outfile.close

set fs=nothing

end if

response.redirect url

%>

view.asp

***************************

<%

path="d:data"

file=request("save")

Set fs = CreateObject("Scripting.FileSystemObject")

if fs.FileExists(path & file & ".txt") then

Set thisfile = fs.OpenTextFile(path & file & ".txt", 1, False)

number=thisfile.readline

thisfile.Close

set fs=nothing

else

number=0

end if

response.contenttype = "application/x-javascript"

response.write "document.write(""" & number & """);"

%>

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
© 2005- 王朝网络 版权所有