Timeout

The Timeout property defines the timeout interval (in seconds) for TCP/IP operations.
The default value is 0 (see the Notes below).

Notes

The unregistered version: The timeout property has zero value and can not be reset.
The Timeout property influences Open, Send, Receive and LookupHost operations. If amount of time required for the operation exceeds timeout interval then operation is interrupted and the unsuccess result is returned. The LastError property is set to 1.
The zero value of timeout means the unlimited time of waiting (the method is executed until any result is gotten).

Example

<%
Set tcpip=CreateObject("TCPIP.Connection")

.............
tcpip.Timeout=60
tcpip.Open ...
.............

%>