我必须创建一个用户输入网址的网站,它会显示只有图像的默认页面。
我需要在2秒后使用time
选项重定向到home.aspx.i不能使用任何图像,按钮或其他任何东西。
答案 0 :(得分:0)
你也可以使用javascript。
window.location.href = "http://linkto/newpage.aspx";
/*
* write it in a function which you will call; hint: onLoad, setTimeOut
*/
否则,您可以使用此元标记
<meta http-equiv="refresh" content="time;url=newpage.aspx" />