当前位置:编程学习 > C#/ASP.NET >>

页面跳转的问题。。。

我在top_frame里设置了登陆,登陆成功后,top_frame的top.aspx跳转到top_in.aspx,同时我想让bottom_frame的bottom.aspx跳转到bottom_in.aspx页面,并且向这个页面传个参数,...?id="登陆的ID",
关键是如何实现bottom_frame框架里的bottom.aspx的跳转?请教大家。。 --------------------编程问答-------------------- 重定向bottom.aspx不就可以了?
--------------------编程问答-------------------- 具体点?? --------------------编程问答-------------------- Response.Redirect("bottom_in.aspx?D=") --------------------编程问答-------------------- Response.Redirect("bottom_in.aspx?ID=") --------------------编程问答-------------------- ......
看来楼上的几位没有看懂我的意思。。
前提是我的top.aspx/top_in.aspx嵌在top_frame(框架名)里,bottom.aspx/bottom_in.aspx嵌在
bottom_frame(框架名)里
我的问题是在top.aspx页面提交登陆,如何实现bottom_frame里的bottom.aspx定向到bottom_in.aspx页面 --------------------编程问答-------------------- ding .... --------------------编程问答-------------------- ding --------------------编程问答-------------------- 给bottom_in.aspx做个客户端按钮,里面写好重定向的地址。
然后在客户端用javascript调用这个按钮。
比如opener.frame2.button.onclick()之类的。
--------------------编程问答-------------------- ding --------------------编程问答-------------------- 顶了 --------------------编程问答-------------------- ...就没个给说说的嘛 --------------------编程问答-------------------- window.frames["bottom_frame"].location.href = url; --------------------编程问答-------------------- top_frame 和 bottom_frame
应该在一个页面吧?

在提交后执行
parent.bottom_frame.loaction.href = "bottom_in.aspx";

--------------------编程问答-------------------- top_in.aspx 里的 onload=parent.frames["bottom_frame"].location.href = url;
--------------------编程问答-------------------- opener.frames[""]...

在页面里写判断 如果 Session 不等于 null 跳转到
这样就可以在主页面刷新一下就OK了 --------------------编程问答-------------------- <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_de易做图t.aspx" scrolling="auto" frameborder="no" noresize>
</frameset>
</frameset>

这个我的前台的框架,frameset里面又嵌了一个frameset,点击top里的top.aspx页面的登陆按钮后,让那个内嵌的frameset里的right里的页面content_de易做图t.aspx跳转到content.aspx
就是这样的,可能我没大说清楚,刚刚试了大家说的方法还是不行 --------------------编程问答-------------------- ding..
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,