Sun Chili!Soft ASP Sun Chili!Soft
ASP Sun Microsystems

 

ASP Response Object IsClientConnected Property

The IsClientConnected property is a read-only property that indicates if the client has disconnected since the last call to Response.Write.

Syntax: ASP Response Object IsClientConnected Property

Response.IsClientConnected

Remarks: ASP Response Object IsClientConnected Property

This property allows you greater control over circumstances where the client may have disconnected from the server. For example, if a long period of time has elapsed between a client request and the server response, it may be beneficial to make sure the client is still connected before continuing to process the script.

Examples: ASP Response Object IsClientConnected Property

<%

'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 

%>

Copyright 2002 Sun Microsystems, Inc. All rights reserved. Legal Notice.