ASP time delay script

I thought I would post this function I wrote to do a simple time delay on an ASP script. It’s pretty straight forward. Function: Sub Pause(intSeconds) startTime = Time() Do Until DateDiff(“s”, startTime, Time(), 0, 0) > intSeconds Loop End Sub Call Function: Pause(5) Now before you start complaining, I know this is not a […]