Back to the top of the FAQ Sleep The Sleep method sleeps (waits) for specified number of milliseconds. Syntax Sleep(milliseconds) Parameters milliseconds Specifies the number of milliseconds to sleep (wait) for. Return Values None Example The following sleeps for one second. <% Set Mailer = Server.CreateObject("ASPMail.ASPMailCtrl.1") Mailer.Sleep(1000) %> Applies To OCXMail ASP Component http://www.flicks.com/authentix/discover/main.htm
The Sleep method sleeps (waits) for specified number of milliseconds.
Syntax
Sleep(milliseconds)
Parameters
Return Values
None
Example
The following sleeps for one second.
<% Set Mailer = Server.CreateObject("ASPMail.ASPMailCtrl.1") Mailer.Sleep(1000) %>
Applies To
OCXMail ASP Component
Back to the top of the FAQ