最新のWeb開発のチュートリアル
 

ASP IsClientConnected Property


<コンプリートレスポンスオブジェクト参照

クライアントがサーバーから切断されている場合はIsClientConnectedプロパティを示します。

構文

response.IsClientConnected

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

<コンプリートレスポンスオブジェクト参照