用asp的redirect不就可以了吗

解决方案 »

  1.   

    当注册后,自动弹出另外一个大小为200*200无滚动条,无地址栏,无工具条的说明部分talk.htm.主要是这个。注意是另弹出的。
      

  2.   

    我需要的是有javascript,否则贴子就不会发这来了哈。。
      

  3.   

    window.open("talk.htm","","width=200,height=200")
    window.location="index.htm"
      

  4.   

    显示在屏幕中央
    <script>
    window.open("talk.htm","","width=200,height=200,left="+(screen.width-200)/2 + ",top="+(screen.height-200)/2)
    window.location="index.htm"
    </script>