|
 |
asp_web_howto thread: Wait option?
Message #1 by "Andy" <andy@t...> on Mon, 6 Jan 2003 06:10:25 +0800
|
|
Hello,
I am new to asp and trying to configure a page to wait for 10 seconds before
redirect the user to the specific page.What is the command to do that?I try
Response.wait() ...:-)( is there such a command like this)?
Thanks.
Andy
Message #2 by "Ian: Future Proof Web Dev" <lists@f...> on Mon, 6 Jan 2003 01:29:59 -0000
|
|
Hi,
If you are wanting to just redirect after a set time, like you said 10
seconds, then you could use the html META tag to achieve it.
<META HTTP-EQUIV="Refresh" CONTENT="10; URL=yourfilenamhere.asp">
you set the CONTENT="10; bit to the time interval you want to wait, in this
case it's set to wait 10 seconds then redirect to the filename placed in
URL=yourfilenamhere.asp.
If you were wanting to redirect after some event had occurred, but you don't
know the length of that event, well that's a different kettle of fish.
hth
ian
----- Original Message -----
From: "Andy" <andy@t...>
To: "ASP Web HowTo" <asp_web_howto@p...>
Sent: Sunday, January 05, 2003 10:10 PM
Subject: [asp_web_howto] Wait option?
> Hello,
>
> I am new to asp and trying to configure a page to wait for 10 seconds
before
> redirect the user to the specific page.What is the command to do that?I
try
> Response.wait() ...:-)( is there such a command like this)?
>
> Thanks.
>
>
>
> Andy
>
>
>
|
|
 |