<META HTTP-EQUIV="refresh" content="2;url='../board.asp'">

解决方案 »

  1.   

    补充一句content设置延时时间、对象。
      

  2.   

    用Javascript也可以
    例子:
    <html>
    <head>
    <script language=javascript>
    setTimeout (goURL, 50);//忘了单位了,可能是100毫秒function goURL ()
    {
      location.href = "http://xxs.yeah.net";
    }
    </script>
    </head>
    <body>
    <p>Wait for 5 seconds...</p>
    </body>
      

  3.   

    用java有点大才小用,在head之间加入<meta http-equiv="refresh" content="60 URL=newindex.htm">即可,60为秒数,url为指向。我的主页http://dukejava.126.com便是这样做的去看一看。