当前位置: 首页 > 网络学院 > 服务端脚本教程 > ASP > ASP IsClientConnected 属性
The IsClientConnected property indicates if the client has disconnected from the server.
IsClientConnected(用户是否保持连接)属性是用来监测用户是否还和服务器保持连接。
response.IsClientConnected |
<%
If response.IsClientConnected=true then response.write("The user is still connected!")
else response.write("The user is not connected!")
end if
%> |
评论 (0) All