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>");



            }

        }

    }

 

你可能感兴趣的:(session)