I am trying to impliment the equivalent of SetTimeout to execute a function on a timed interval, server-side.<br><br>Specifically, rather than include code in individual loops, I would like to check every second or so to see if the client is still connected, something like (which doesn't work):<br><br>Function StillWorking()<br><br> if working=1 then<br> if response.isclientconnected=false then<br> response.end<br> end if<br> intTimerId = SetTimeout("StillWorking", 1000)<br> end if<br><br>end function<br><br>By the way, note "response.end" (works) which causes the script to end (more reliable way, I think, than using EXIT DO or EXIT FOR if you want to stop the script immediately).<br><br>Is there any way to do a "timer event" in server-side VbScript?<br>