Open In App

ASP IsClientConnected Property

Improve
Improve
Like Article
Like
Save
Share
Report

The ASP IsClientConnected Property is used to specify whether the client is connected or disconnected from the server. It is a read-only property.  This property is applied to the Response Object.

It enables you greater control over conditions where the client may have reset the connection to the server. For example, if a long period of time has elapsed between when a client request was made and when the server responded, it may be beneficial to make sure the client is still connected before continuing to process the script.

Syntax:

Response.IsClientConnected ( )

Example: Below code illustrates the ASP IsClientConnected Property.

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
%>


 


Last Updated : 22 Apr, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads