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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top