欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

不用Global.asa也能實(shí)現(xiàn)統(tǒng)計(jì)在線人數(shù)嗎?

 更新時間:2006年11月16日 00:00:00   作者:  

不用Global.asa也能實(shí)現(xiàn)統(tǒng)計(jì)在線人數(shù)嗎?

<%
sessionID = session.SessionID
timeout = 5
'
設(shè)置session保持的時間.

Conn_String = "DRIVER={Microsoft Access Driver (*.mdb)};DBQ=" & Server.MapPath("count.mdb")
'Conn_String = "activeUser"
'
最好設(shè)置DSN = "activeuser",因?yàn)槲覀冃枰谒械?/SPAN>ASP腳本中包含這個文件.

Set ConnCount =Server.CreateObject("ADODB.Connection")
ConnCount.Open Conn_String

aaa = dateadd("n", -timeout, now())
connCount.Execute ("delete * from count where postdate < #" & aaa & "#")
'
在超時后刪除session.

sql0 = "select sess from count where sess='" & sessionID & "'"

' 保持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"

' 計(jì)算sessionID.
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
%>

當(dāng)前正有<%=count%>人在隨風(fēng)起舞流連忘返!

 

[1]

相關(guān)文章

最新評論