-
detect connection with the server
Hi all,
When people upload file in the server, is it possible to detect if the user is still connecting or not with the server?
thx
joe
-
-
Hi
The IsClientConnected property of Response object indicates if the client has disconnected from the server.
<%
Dim res
res = Response.IsClientConnected
if res = true Then
Response.Write "Client is connected to the server"
else
Response.Write "Client is not connected to the server"
End If
%>
Hope this will help you.
Regards
Code Exploiter
-
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
Bookmarks