使用了网页框架,一个页面可以同时显示多个ASP页面,但是用到其中一个页面中的“注销”按钮的时候,如何让该页面内的所有ASP页面全部跳转。
參考答案:this.ImageButton2.Attributes.Add("onmousedown","top.document.location = 'Index.aspx'");
//退出系统
给退出按钮加一个脚本事件即可.希望对你有帮助.
<SCRIPT language="JavaScript">
if(top==self)
self.location.href="Index.aspx";
</SCRIPT>
上面代码是,如果直接登陆框架的网页,则自动跳转到,主页,进行登陆.