ASP Check user connection
Check user connection
<html>
<body>
<%
If Response.IsClientConnected=true then
Response.Write("The user is connected!")
else
Response.Write("The user is not connected!")
end if
%>
</body>
</html>
<html>
<body>
<%
If Response.IsClientConnected=true then
Response.Write("The user is connected!")
else
Response.Write("The user is not connected!")
end if
%>
</body>
</html>