Latest web development tutorials

ASP IsClientConnectedプロパティ

レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス

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
%>


レスポンスオブジェクトリファレンス 完全なレスポンスオブジェクトリファレンス