How to detect if the visitor is still connecting to the web server
- Response object has provided a properties called Isclientconnected. We can use this properties to detect if the visitor is still connecting to the web server or not:
<%
If Response.isclientconnected Then
Response.write("Continue....")
Else
Shutdown() 'Perform Shutdown module
End If
%>
No comments:
Post a Comment