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

Asp.net退出框架問題

我有一个框架,分成left和right两部分!我在left中方一个“退出”按钮,当我单击退出按钮时如何将整个框架所在的页面关闭,并转到登錄界面. --------------------编程问答-------------------- Html
target='_Self'

Js
Self.location='新页面.aspx';

JS
window.open('新页面');
window.top.close(); --------------------编程问答-------------------- window.open('Login.aspx','','');
window.parent.close() --------------------编程问答-------------------- 在当前页面重定向需要关闭当前窗体吗?
直接重定向就可以了啊

<script>
function LogOut()
{
window.open("../login.aspx","_parent","fullscreen=1");
}
</script> --------------------编程问答-------------------- public static void ShowAndRedirect(System.Web.UI.Page page, string msg, string url, string frame)
    {
        StringBuilder Builder = new StringBuilder();
        Builder.Append("<script language='javascript' defer>");
        Builder.AppendFormat("alert('{0}');", msg);
        Builder.AppendFormat("top." + frame + ".location.href='{0}'", url);
        Builder.Append("</script>");
        page.RegisterStartupScript("message", Builder.ToString());

    }

添加以上函数,页面调用ShowAndRedirect(this, "已退出!", "index.aspx", "self"); --------------------编程问答-------------------- Response.Write("<script>parent.location.href='Index.aspx';</script>"); --------------------编程问答-------------------- 謝謝

window.open('Login.aspx','','');
window.parent.close()
我用這個時為什么總提示要不要關閉﹐有沒有辦法可以讓直接關閉而不提示 --------------------编程问答-------------------- Response.Write("<script>window.open('../login.aspx','_top');</script>");
--------------------编程问答-------------------- http://www.dotnetxx.cn/shownews.aspx?id=17 --------------------编程问答-------------------- <A id=lnkLogout href="UserLogin.aspx" class="mycolor"
            target=_top>
这样不行? --------------------编程问答--------------------
引用 9 楼 yuan74521940 的回复:
<A   id=lnkLogout   href= "UserLogin.aspx "   class= "mycolor " 
                        target=_top> 
这样不行?

ding
补充:.NET技术 ,  ASP.NET
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,