SendTimeout

The SendTimeout property returns or sets the timeout value to send the HTTP request.  If the send is not complete before the timeout then the request will be terminated. When the language extension is created it will initialize this value to what is configured in the data connection configuration.

Group:  Web Object

Syntax:  nValue = oWeb.SendTimeout

Alternate:  oWeb.SendTimeout = nValue

nValue        (Long) the number of milliseconds the system will wait for submitting a HTTP request

Example:

Dim oWeb As Web

Dim nTimeout As Long

nTimeout = oWeb.SendTimeout

oWeb.SendTimeout = 30000