Vlastnost ASP IsClientConnected


❮ Dokončete referenci objektu odezvy

Vlastnost IsClientConnected označuje, zda se klient odpojil od serveru.


Syntax

response.IsClientConnected

Příklady

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

❮ Dokončete referenci objektu odezvy