繁体中文
设为首页
加入收藏
当前位置:ASP技术首页 >> ASP基础 >> 显示页面show.asp--基于web的QQ程序1

显示页面show.asp--基于web的QQ程序1

2006-04-15 08:00:00  作者:  来源:互联网  浏览次数:0  文字大小:【】【】【
简介: 基于web的QQ程序1 //每五秒取得一次信息(前面已经完成了有关登录之类的工作) //假设同时通信量为30 window.open("inform.ASP","","width=200,height=400")

基于web的QQ程序1

//每五秒取得一次信息(前面已经完成了有关登录之类的工作)

//假设同时通信量为30

<%

response.write("现在在线:"&"
"

for i=1 to 30

if application("user"&i)=session("user") then

response.write("")

response.write(session("user")&"")

else

response.write(application("user"&i)&"
")

end if

if application("towho"&i)=session("user") then%>

<%end if

next%>

责任编辑:admin
相关文章