如题。。
(不是用html标签,servlet,jsp...就是简单的纯界面跳转)

解决方案 »

  1.   

    response sendredirect 可否?
      

  2.   

    不理解LZ的意思,是窗口见自动切换焦点吗?
    如果是的话,用Window类的 toBack() / toFront() 方法可以实现吧。LZ最好把问题描述得清楚些。
      

  3.   

    实例化一Frame对象,然后  对象名.show();
      

  4.   

    winframe 可是使用 实例化窗口 然后show()网页的建议使用javascript控制
    如下:
    window.location.reload();
    window.history.go(0);
    window.location.replace(window.location.href);
    window.location.assign(window.location.href);
    window.location.href=location.href;
    window.location.assign(location.href);
    document.execCommand('Refresh');
    window.navigate(location.href);
    window.open('自身页面','_self');
    window.location.reload(true);
    发现window.location.reload(),window.history.go(0)和document.execCommand('Refresh'),
    这三个方法是最快速的。其他的都有明显的浏览器滚动条的出现。
    Response.Write("<script language=javascript>window.location.href='main.html'</script>"); 
      ("<script>Document.frames.mainfrare.location.href'1.aspx';</script>");框架跳转
    Response.write("<script language=javascript>parent.Location="1.aspx";</script>"); 整页跳转