静态页面中使用的一些动态

访问次数,

在统计页面加入以下这个代码

<SCRIPT src="static_click.asp?articleid=<%=articleid%>"></SCRIPT >

对应的ASP文件为

<!-- #include file="inc/conn.asp" -->
<%

articleid=int(trim(request.querystring("articleid")))
sqlStr="update product set hits=hits+1 where articleid=" & articleid
'给文章点击数加1
conn.execute(sqlStr)
'读出文章点击数
hits=conn.execute("select hits from product where articleid=" & articleid)(0)
Response.Redirect productshow&"_"&articleid&.htm
%>

document.write(<%=hits%>) 
---------------------------------------------- 

原文地址:https://www.cnblogs.com/zerogo/p/2209345.html