Latest web development tutorials

ASP IsClientConnected property

Response Object Reference Complete Response Object Reference

IsClientConnected attribute indicates whether the client has been disconnected from the server.

grammar

response.IsClientConnected

Examples

<%
If response.IsClientConnected=true then
response.write("The user is still connected!")
else
response.write("The user is not connected!")
end if
%>


Response Object Reference Complete Response Object Reference