ASP IsClientConnected 属性
ASP IsClientConnected 属性用于指定客户端是与服务器连接还是断开连接。它是一个只读属性。此属性应用于响应对象。
它使您能够更好地控制客户端可能已重置与服务器的连接的情况。例如,如果在发出客户端请求和服务器响应之间已经过了很长时间,那么在继续处理脚本之前确保客户端仍然连接可能是有益的。
句法:
Response.IsClientConnected ( )
示例:下面的代码说明了 ASP IsClientConnected 属性。
HTML
<%
'Check to see if the client is connected.
If Not Response.IsClientConnected Then
'Get the session_id to send to the shutdown function.
Shutdownid = Session.SessionID
'Perform shutdown processing.
Shutdown(Shutdownid)
End If
%>