iframe 框架中main 页面设置session ,超时只有main页跳转到指定页面的解决

 protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            if (Session["username"] == null || Session["pwd"] == null)
            {

                Response.Write("<script>window.top.location.href='login.aspx '</script>");

            }
        }
    }
原文地址:https://www.cnblogs.com/wangyuelang0526/p/2523808.html