网络学院 w3pop社区 网络资源 IT新闻

w3pop.com :: 网络学院 :: ASP :: ASP IsClientConnected 属性

会员登陆

帐号

密码

回答

记住密码

忘记密码? 注册

ASP IsClientConnected 属性


作者:w3pop.com 翻译/整理:w3pop.com 发布:2007-04-28 浏览:1104 :: ::

The IsClientConnected property indicates if the client has disconnected from the server.
IsClientConnected(用户是否保持连接)属性是用来监测用户是否还和服务器保持连接。

Syntax
语法

response.IsClientConnected

Examples
描述

<%
If response.IsClientConnected=true then
  response.write("The user is still connected!")
else
  response.write("The user is not connected!")
end if
%>

评论 (0) All