check.asp
<script language=javascript> function Test() { var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); xmlhttp.open("POST","online.asp",false); // 向onceonline.asp發送更新請求 xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded"); xmlhttp.send(); } setInterval("Test();",10); // 10秒鐘發送一次更新請求 </script>
online.asp
<!--#include file="conn.asp"--> <% conn.Execute "update hand_us set i='"&ii&"' where h=true and a='"&request.cookies("login_hand")&"'" '更新最后在線時間 conn.Execute "update hand_us set h=false where datediff('s',i,now())>1" '刪除不在線的用戶 enddata() %>
|