Wapls_online.asp
资源名称:7.rar [点击查看]
上传用户:lfyh0123
上传日期:2020-11-04
资源大小:200k
文件大小:1k
源码类别:

手机WAP编程

开发平台:

ASP/ASPX

  1. <%
  2. '==================================
  3. '=文 件 名:wapls_online.asp
  4. '=适用版本:蓝色世纪WAP网站管理系统(CMS)V1.1
  5. '=官方版权:http://www.songfr.cn
  6. '=文件功能:网站在线统计系统
  7. '=文件作者:蓝色阳光
  8. '=发行时间:2007-02-01
  9. '==================================
  10. sessionID = session.SessionID
  11. timeout = onlinetime
  12. Conn_String = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("count")
  13. Set ConnCount =Server.CreateObject("ADODB.Connection")
  14. ConnCount.Open Conn_String
  15. aaa = dateadd("n", -timeout, now())
  16. connCount.Execute ("delete * from count where postdate < #" & aaa & "#")
  17. sql0 = "select sess from count where sess='" & sessionID & "'"
  18. set rscheck = connCount.Execute (sql0)
  19. if rscheck.eof then
  20. sql = "insert into count (sess,postdate) values('" & sessionID & "', '" & now() & "')"
  21. connCount.Execute (sql)
  22. end if
  23. rscheck.close
  24. set rscheck = nothing
  25. sql2 = "select count(sess) from count"
  26. set rs = connCount.Execute (sql2)
  27. count = rs(0)
  28. rs.close
  29. set rs = nothing
  30. sql3 = "select * from count"
  31. set rspredel = connCount.Execute (sql3)
  32. do until rspredel.eof
  33. xxx=DateDiff("n", rspredel("postdate"), Now())
  34. if xxx > timeout then
  35. count = count-1
  36. end if
  37. rspredel.movenext
  38. loop
  39. rspredel.close
  40. set rspredel = nothing
  41. connCount.Close
  42. set connCount = nothing
  43. if count = 0 then
  44. count = 1
  45. end if
  46. total=count
  47. %>