I\'m doing some revision on an old app that is written in classic ASP/VbScript.
It has a feature to send out an e-mail to the members of the application, but because the
You can use :
Sleep <% function Sleep(seconds) set oShell = CreateObject("Wscript.Shell") cmd = "%COMSPEC% /c timeout " & seconds & " /nobreak" oShell.Run cmd,0,1 End function Sleep(5) response.write("End") %>