Wapls_online.asp
资源名称:7.rar [点击查看]
上传用户:lfyh0123
上传日期:2020-11-04
资源大小:200k
文件大小:1k
源码类别:
手机WAP编程
开发平台:
ASP/ASPX
- <%
- '==================================
- '=文 件 名:wapls_online.asp
- '=适用版本:蓝色世纪WAP网站管理系统(CMS)V1.1
- '=官方版权:http://www.songfr.cn
- '=文件功能:网站在线统计系统
- '=文件作者:蓝色阳光
- '=发行时间:2007-02-01
- '==================================
- sessionID = session.SessionID
- timeout = onlinetime
- Conn_String = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("count")
- Set ConnCount =Server.CreateObject("ADODB.Connection")
- ConnCount.Open Conn_String
- aaa = dateadd("n", -timeout, now())
- connCount.Execute ("delete * from count where postdate < #" & aaa & "#")
- sql0 = "select sess from count where sess='" & sessionID & "'"
- set rscheck = connCount.Execute (sql0)
- if rscheck.eof then
- sql = "insert into count (sess,postdate) values('" & sessionID & "', '" & now() & "')"
- connCount.Execute (sql)
- end if
- rscheck.close
- set rscheck = nothing
- sql2 = "select count(sess) from count"
- set rs = connCount.Execute (sql2)
- count = rs(0)
- rs.close
- set rs = nothing
- sql3 = "select * from count"
- set rspredel = connCount.Execute (sql3)
- do until rspredel.eof
- xxx=DateDiff("n", rspredel("postdate"), Now())
- if xxx > timeout then
- count = count-1
- end if
- rspredel.movenext
- loop
- rspredel.close
- set rspredel = nothing
- connCount.Close
- set connCount = nothing
- if count = 0 then
- count = 1
- end if
- total=count
- %>