Jan 4, 2001 #1 Bipasha Programmer Joined Feb 28, 2001 Messages 23 Location US Any suggestions on how to refresh a page in ASP specifying a specific delay value?? Thanks in advance
Any suggestions on how to refresh a page in ASP specifying a specific delay value?? Thanks in advance
Jan 4, 2001 #2 jaredn Programmer Joined Sep 1, 1999 Messages 1,506 Location US one way, put this on the client side: <script language="javascript"> delayinmilliseconds=2000 setTimeout("window.location.reload()",delayinmilliseconds) </script> jared@aauser.com Upvote 0 Downvote
one way, put this on the client side: <script language="javascript"> delayinmilliseconds=2000 setTimeout("window.location.reload()",delayinmilliseconds) </script> jared@aauser.com