Response.Redirect("新的页面", True)

解决方案 »

  1.   

    response.redirect("new.aspx target='你'");
      

  2.   

    Response.Redirect(string url,bool b)url路径
    b=true新窗口
    b=false 本窗口
      

  3.   

    我的页面有框,在左边页面中有一个按钮,单击后转到别的页面,这个页面我想在父窗口中打开。
    有没有办法让response.redirect定位的URL地址在父窗口中打开呀。
      

  4.   

    用第3頁,將父和子頁放進去,让response.redirect定位的URL地址連到第3頁,可以做到你要的效果
      

  5.   

    你一定要用redirect来做吗?
    直接用parent.location.href=".."不行吗?
      

  6.   

    那就别用Response.Redirect贝,用Response.Write写一句window.frames.item(i).location=xxx;
      

  7.   

    Response.Write("<script>window.open('xxx.aspx','rightFrameName')</script>")