#12004/10/11 23:20:04
如何做点击统计????????
其实我是想做一个文章系统.在页面上显示文章的标题,点了标题进去后,就暗暗统计了所点击的标题的点击量.
我在网上找到了这样一篇文章:
--------------------------------
在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 & """);"
%>
--------------------------
按照上面的做了.但是出现这样的错误:
错误类型:
Microsoft VBScript 编译器错误 (0x800A0408)
无效字符
/counter.asp, line 2
Path="d:Data"
请教了!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
编辑历史:[此帖最近一次被 allinhands 编辑过(编辑时间:2004-10-12 08:35:40)]