无刷新随时取得用户当前活动信息
最终显示是这样的:
用户:billy 权限:管理员 时间[2004年1月21日 20:54:08] 停留[0小时0分钟] 空闲[0分钟12秒]
显示的BOTTOM.HTM文件
<SCRIPT language=JavaScript>
<!--
function bar()
{
var oxml(标准化越来越近了)Doc = new ActiveXObject(MSxml(标准化越来越近了)); //创建MSxml(标准化越来越近了)对象
sURL = "loginxml(标准化越来越近了).asp" //获取登陆状态数据的地址
oxml(标准化越来越近了)Doc.url = sURL; //load数据
var oRoot=oxml(标准化越来越近了)Doc.root; //获取返回xml(标准化越来越近了)数据的根节点
if(oRoot.children != null)
{
//根据返回的数据在客户端显示
user.innerHTML=oRoot.children.item(0).text; //用户
myclock.innerHTML=oRoot.children.item(1).text; //时间
stay.innerHTML=oRoot.children.item(2).text; //停留
free.innerHTML=oRoot.children.item(3).text; //空闲
qx.innerHTML=oRoot.children.item(4).text; //权限
}
if (oRoot.children.item(5).text>1800) //空闲时间超过30分钟则自动转到退出登陆页面
window.parent.location="/user/logoff.asp?id=1";
timeoutid = setTimeout("bar()",1000) //没1秒取得一次数据,}
//-->
</SCRIPT>
用户:<font color="#FF0000"><span id=user></span></font> 权限:<font color="#FF0000"><span id=qx></span></font> 时间[<span id=myclock></span>] 停留[<span id=stay></span>] 空闲[<span id=free></span>]
提供xml(标准化越来越近了)数据的ASP页面 LOGINxml(标准化越来越近了).ASP
<%
username=session("userName")
qxdm=session("qxdm")
set rs = server.createobject("adodb.recordset")
rs.source = "select * from userlogin where username="&username&""
rs.open rs.source,conn,1,1
logindate=rs("logindate")
active=rs("active")
rs.close
stay=DateDIff("s",logindate,now())
off=DateDIff("s",active,now())
stay=stay/60
相关新闻>>
- 发表评论
-
- 最新评论 更多>>