You're trying a server script in client side script. Would need to be:
<%
function bSleep()
Set WScript = Server.CreateObject("WScri
WScript.Sleep 2000
end function
%>
What you are trying is not possible. Client side VB will not control sevrer side sleep. Do you understand the differecne?
Main Topics
Browse All Topics





by: fritz_the_blankPosted on 2004-08-19 at 07:53:23ID: 11842000
In general, you don't want to do this. It is much better to arrange your code in such a way this isn't necessary.
FtB