是不是这一句<meta http-equiv=refresh content="5;url=logopage.htm">
有问题<meta http-equiv=refresh content="5;url=/logopage.htm">看看,
如果还不行试试<html><head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<meta http-equiv=refresh content="5;url=logopage.htm">
<title>9901108</title>
</head><body >
<div align=center style="width: 764; height: 241">
<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="311" height="136">
  <tr>
    <td height="136" width="311">
欢迎
    </td>
  </tr>
</table>
</div>
</p>
</body>
<script language="javascript">
setTimeout("window.open('logopage.asp')",5000);
 
</script></html>

解决方案 »

  1.   

    删掉<meta http-equiv=refresh content="5;url=logopage.htm">即可
      

  2.   

    也许你只是需要这个:
    function cc()
    {
    setTimeout("window.open('logopage.asp')",4900);
    }
    错开一点时间就可以
      

  3.   


    <meta http-equiv=refresh content="5;url=logopage.htm">                //5即5秒
    作用是
    原窗口也转到logopage.asp 页<script language="javascript">
    function cc()
    {
    setTimeout("window.open('logopage.asp')",5000); ///5000即5000毫秒,也即5秒。故同时。

    </script>
    </head><body onload="javascripts:cc();">作用是:
    弹出新窗口
      

  4.   

    oh,我知道了,原来是忘了删<meta ....〉了。嘿嘿