重定向bottom.aspx不就可以了?

解决方案 »

  1.   

    Response.Redirect("bottom_in.aspx?D=")
      

  2.   

    Response.Redirect("bottom_in.aspx?ID=")
      

  3.   

    ......
    看来楼上的几位没有看懂我的意思。。
    前提是我的top.aspx/top_in.aspx嵌在top_frame(框架名)里,bottom.aspx/bottom_in.aspx嵌在
    bottom_frame(框架名)里
    我的问题是在top.aspx页面提交登陆,如何实现bottom_frame里的bottom.aspx定向到bottom_in.aspx页面
      

  4.   

    给bottom_in.aspx做个客户端按钮,里面写好重定向的地址。
    然后在客户端用javascript调用这个按钮。
    比如opener.frame2.button.onclick()之类的。
      

  5.   

    window.frames["bottom_frame"].location.href = url;
      

  6.   

    top_frame 和 bottom_frame
    应该在一个页面吧?在提交后执行
    parent.bottom_frame.loaction.href = "bottom_in.aspx";
      

  7.   

    top_in.aspx 里的 onload=parent.frames["bottom_frame"].location.href = url;
      

  8.   

    opener.frames[""]...在页面里写判断 如果 Session 不等于 null 跳转到
    这样就可以在主页面刷新一下就OK了
      

  9.   

    <frameset rows="20%,*">
    <frame name="top" src="top.aspx" scrolling="no" frameborder="no" noresize>
    <frameset cols="15%,*">
    <frame name="left" src="menu.aspx" scrolling="no" frameborder="no" noresize>
    <frame name="right" src="content_defalut.aspx" scrolling="auto" frameborder="no" noresize>
    </frameset>
    </frameset>这个我的前台的框架,frameset里面又嵌了一个frameset,点击top里的top.aspx页面的登陆按钮后,让那个内嵌的frameset里的right里的页面content_defalut.aspx跳转到content.aspx
    就是这样的,可能我没大说清楚,刚刚试了大家说的方法还是不行