How to make a page stay open only for few soconds, then redirect automaticaly to another page

  • Thread starter Thread starter NWx
  • Start date Start date
N

NWx

Hi,

I'd like to have an ASPX page to open to show a message to the user, then,
after few seconds, to automatically redirect to another page.

How can I do this?

Thanks?
 
If no interactivita is needed, you may do it just as with ordinary HTMLpage:
add this to <head></head> tag:
<meta http-equiv="refresh" content="5; URL=index.htm">

5 - insert your number of seconds
index.htm - insert your needed URL

Hrvoje
 
Back
Top