经考虑,可用如下方案解决:
生成静态页面时会产生一个文章的id存到数据库中,那么我们在制作文章的模板的时候就可以在这个文章的id上做文章,文章模板包含以下语句:
<SCRIPT src="counter.asp?newsId=<%=#newsId#%>"></SCRIPT >
说明:
在利用模板生成文章时,把"#newsId#"进行模式匹配,替换为新添加的文章的id号。
counter.asp 文件为实现记数的asp文件
<%
@####################
dim newsId,sqlStr,hits
newsId=int(trim(request.querystring("news")))
sqlStr="update articles set hits=hits+1 where newsId=" & newsId
@#给文章点击数加1
conn.execute(sqlStr)
@#读出文章点击数
hits=conn.execute("select hits from articles where newsId=" & newsId)
%>
@#在静态页面中显示文章点击数
document.write(<%=hits%>)