ADO ConnectionTimeout Property
❮ Complete Connection Object Reference
The ConnectionTimeout property sets or returns the number of seconds to wait for a connection to open, before canceling the attempt and generate an error. Default is 15 seconds.
Syntax
objconn.ConnectionTimeout
Example
<%
set conn=Server.CreateObject("ADODB.Connection")
conn.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0"
conn.ConnectionTimeout=30
conn.open server.mappath("database.mdb")
conn.close
%>
❮ Complete Connection Object Reference