Displaying Source Code(s)
|
|
--------------------------------------------------------------------------------
Check if the user is still connected
--------------------------------------------------------------------------------
Description : This example demonstrates the IsClientConnected
property. This property checks if the user is still connected to
the server.
<html>
<body>
<%
If Response.IsClientConnected=True Then
Response.Write("The user is still connected!")
Else
Response.Write("The user is not connected!")
End If
%>
</body>
</html> |
|
|