ActivEarth.Account.ChangePassword.Page_Load C# (CSharp) Method

Page_Load() protected method

Load the page
protected Page_Load ( object sender, EventArgs e ) : void
sender object Object that requested the page load.
e System.EventArgs The event arguments.
return void
        protected void Page_Load(object sender, EventArgs e)
        {
            if (Session["userDetails"] == null)
            {
                Response.Redirect("Login.aspx");
            }
        }