protected override void OnInit(EventArgs e)
        {
            base.OnInit(e);
            // check the person details existance here
            PersonSession person = PersonSession.GetPersonSession();

            if (person == null)
            {
                this.lblIsLogged.Text = "Not logged!";
            }
            else
            {
                this.Person = person;
            }
        }