当前位置: 首页 > 图文教程 > 网络编程 > ASP > 完整的访问统计程序(三 应用篇)

ASP
Asp+Sql 对数据库的各种操作
ASP:6行代码实现无组件上传
ASP中几种分页显示的比较
ASP中数据库调用中常见错误的现象和解决
ASP实用技巧:强制刷新和判断文件地址
asp全站防止注入的代码
ASP如何获取客户端真实IP地址
ASP实现可显示和隐藏的树型菜单
如何用ASP获取真实IP地址
ASP与SQL数据库连接代码
拒绝攻击 万能Asp防注入代码
草根站长成长计划:跟我学新云采集入门(2)
ASP技巧:提高使用Request集合的效率
Asp用存储过程实现数据分页
做网页时常用的ASP函数
Asp编码优化技巧八则
ASP中Cache技术的应用
用ASP封IP的方法,防止固定IP垃圾留言
ASP实现一行多列显示方法实例程序
ASP实现动态添加表单内容的实例程序

ASP 中的 完整的访问统计程序(三 应用篇)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 31 ::
收藏到网摘: n/a

  /*
  原创:豆腐
  请大家在转载和使用的时候不要修改这里
*/
/*
  static.asp
  保存统计数据
*/
<!--#include file="staticFunc.asp"-->
<%
  userid=request.querystring("userid")
  InsertData userid
%>
document.write('<a href="http://www.yourHost.com/static/show.asp?userid=roboo"><img src="/upload/tech/20091103/20091103102712_6602294be910b1e3c4571bd98c4d5484.gif""
alt="哈哈_豆腐_统计" border=0>'</a>)
/*
  show.asp
  显示统计数据
*/
<!--#include file="staticFunc.asp"-->
<%
   userid=request.querystring("userid")
   writeDayStatic userid
   writeWeekStatic userid
   writeMonthStatic userid
   writeYearStatic userid
   WriteRecentInfo userid
%>
/*
  统计免费代码
  这个统计程序支持多用户
*/
<script language="JavaScript" src="http://www.yourHost.com/static/static.asp?userid=roboo">
</script>
/*
显示统计效果的地址如下
*/
http://www.yourHost.com/static/show.asp?userid=roboo
               /*    完        */
希望大家 就 这个 程序 和我 交流看法
文中 有 不正确 的 地方,请大家 指正