是我老师的网站
网站地址是:http://210.36.18.53/jyxlx/
内容是教育心理学方面的
首页最下方的计数器变动很慢,我用某IP地址访问首页,最下方的计数器数目会加1,但在15分钟内刷新页面,计数器数目没变化,超过15分钟刷新,计数器数目才会有变化加1,如何通过修改计数器的程序,使得刷新一次页面计数器数目就会加1?
恳请高手指点,或者推荐其他的计数器,先谢了!!
附计数器的程序:
<%
style=Request("style")
theurl="http://" & Request.ServerVariables("http_host") & finddir(Request.ServerVariables("url"))
%>
document.write("<script>var style='<%=style%>';var url='<%=theurl%>';</script>")
_dwrite("<script language=javascript src="+url+"/stat.asp?style="+style+"&referer="+escape(document.referrer)+"&screenwidth="+(screen.width)+"></script>");
function _dwrite(string) {document.write(string);}
<%
Function finddir(filepath)
finddir=""
for i=1 to len(filepath)
if left(right(filepath,i),1)="/" or left(right(filepath,i),1)="\" then
abc=i
exit for
end if
next
if abc <> 1 then
finddir=left(filepath,len(filepath)-abc+1)
end if
end Function
%>
[此贴子已经被作者于2007-10-14 13:58:59编辑过]