protected void btnSavePersonDetails_Click(object sender, EventArgs e)
        {
            PersonSession person = new PersonSession(int.Parse(tbPersonId.Text),
                                                     tbName.Text, int.Parse(tbAge.Text), chkEmailValidated.Checked);

            PersonSession.CreatePersonSession(person);
        }