[编程论坛] ASP超级群:49158383 敲门暗号:ASP编程
龍艺博客 http://www.
呵呵,如果这样就很容易了,不停的向服务器发包很容易做到,使用即时方法
<script>
function writeHtml() {
try{
var strxmlhttp;
try {strxmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");}
catch(e) {strxmlhttp = new XMLHttpRequest();}
strxmlhttp.open("GET","login.asp",false);
strxmlhttp.send(null);
document.getElementById("div1").innerHTML=strxmlhttp.responseText;
}
catch(e){alert(e);}
}
function MyShow(){timer = window.setInterval("writeHtml()",1000);} //每秒刷新一次
</script>
<body onload="MyShow();">
<div id="div1"></div>
</body>
login.asp
<%
username=session("uers")
times=now()
conn.Execute "update Online set Times='"&Times&"' where username='"&username&"'"
%>
[此贴子已经被作者于2007-9-6 17:50:58编辑过]
呵呵,如果这样就很容易了,不停的向服务器发包很容易做到,使用即时方法
<script>
function writeHtml() {
try{
var strxmlhttp;
try {strxmlhttp = new ActiveXObject("Msxml2.XMLHTTP.3.0");}
catch(e) {strxmlhttp = new XMLHttpRequest();}
strxmlhttp.open("GET","login.asp",false);
strxmlhttp.send(null);
document.getElementById("div1").innerHTML=strxmlhttp.responseText;
}
catch(e){alert(e);}
}
function MyShow(){timer = window.setInterval("writeHtml()",1000);}
</script>
<div id="div1"></div>
login.asp
<%
username=session("uers")
times=now()
conn.Execute "update Online set Times='"&Times&"' where username='"&username&"'"
%>
问题是 很无谓地增加了网络流量,服务器的IIS也不是无限的啊
而且有DDOS的倾向……