I had to create a website where the users enters the url and it displays the default page which has just an image.
I need to redirect to home.aspx using time
option after 2 seconds.i can't use any image, button or any thing else.
Asked
Active
Viewed 69 times
-1

Wahtever
- 3,597
- 10
- 44
- 79
-
You can use `setTimeout` in javascript – Satpal Dec 03 '13 at 08:44
-
Did you try searching for "html direction"? – freefaller Dec 03 '13 at 08:44
1 Answers
0
You can use javascript too.
window.location.href = "http://linkto/newpage.aspx";
/*
* write it in a function which you will call; hint: onLoad, setTimeOut
*/
Otherwise, you can use this meta tag
<meta http-equiv="refresh" content="time;url=newpage.aspx" />

Afzaal Ahmad Zeeshan
- 15,669
- 12
- 55
- 103