Click to Rate and Give Feedback
MSDN
MSDN Library
Web Development
IIS 6.0 SDK
Response Object
 Response.IsClientConnected
Collapse All/Expand All Collapse All
Response.IsClientConnected

The IsClientConnected property is a read-only property that indicates if the client has reset the connection to the server.

This property enables you greater control over circumstances 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.

The following example checks whether the client is connected.

<%  
  'Check to see if the client is connected. 
  If Not Response.IsClientConnected Then  
    'Get the sessionid to send to the shutdown function. 
    Shutdownid = Session.SessionID 
  'Perform shutdown processing. 
    Shutdown(Shutdownid)  
  End If 
%> 


Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker