Click to See Complete Forum and Search --> : delay to the jsp page


anu159
03-11-2007, 12:24 AM
hi,

I just wanted to know if there is any method to put an delay to jsp page ?
(i.e. if i want to show a perticular page after 30 sec, can i do it an if i can how??

plz help,
thanx in advance.

jasonahoule
03-11-2007, 01:29 AM
Are you saying that you are on a particular page then 30 seconds later you are forwarded to another page? If so, you can do this with Javascript.

setTimeout("window.location=http://wherever.com", 30000);

The time is in milliseconds.

shivam
04-02-2008, 07:39 PM
what if the page is in the same directory:confused: