明輝手游網(wǎng)中心:是一個(gè)免費(fèi)提供流行視頻軟件教程、在線學(xué)習(xí)分享的學(xué)習(xí)平臺(tái)!

顯示用戶是否在線的方法

[摘要]check.asp <script language=javascript> function Test() var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP"); xmlhttp.open("POST&qu...

check.asp

<script language=javascript>
function Test()
{
var xmlhttp = new ActiveXObject("MSXML2.XMLHTTP");
xmlhttp.open("POST","online.asp",false); // 向onceonline.asp發(fā)送更新請(qǐng)求
xmlhttp.setRequestHeader("CONTENT-TYPE","application/x-www-form-urlencoded");
xmlhttp.send();
}
setInterval("Test();",10); // 10秒鐘發(fā)送一次更新請(qǐng)求
</script>

online.asp

<!--#include file="conn.asp"-->
<%
conn.Execute "update hand_us set i='"&ii&"' where h=true and a='"&request.cookies("login_hand")&"'" '更新最后在線時(shí)間
conn.Execute "update hand_us set h=false where datediff('s',i,now())>1" '刪除不在線的用戶
enddata()
%>