把下面这段代码加在<head>跟</head>之间就可以了。
<script language="javascript">
<!--
setTimeout("history.go(-1);",3000); 
//-->
</script>这其实就是相当于三秒后点击IE的后退按钮,不知你想要的
是不是这种效果.

解决方案 »

  1.   

    <table cellSpacing="0" cellPadding="5" width="100%" border="0" align=center width=800>
    <tr>
    <td align=center valign="top">
    <b><span id=yu>3</span><a href=javascript:countDown></a>秒钟后系统将自动返回...</b>
    </td>
     </table>        
      <script>function countDown(secs){yu.innerText=secs;if(--secs>0)setTimeout("countDown("+secs+")",1000);else history.back()}countDown(3);</script>
      

  2.   

    <meta http-equiv=refresh content="3;URL=index.asp">
    这样也行啊