asp IsClientConnected 的作用
IsClientConnected 的作用是判断否现在与数据库连接的
<html>
<body>
<%
If Response.IsClientConnected=true then
Response.Write("The user is still connected!")
else
Response.Write("The user is not connected!")
end if
%>
</body>
</html>
输出为
The user is still connected!
补充:asp教程,ASP入门