protected void BtnUpdateProfile_Click(object sender, EventArgs e)
        {
            data = (Model.User)Session["user"];

            string newEmail  = TxtEmail.Text.ToString();
            string newName   = TxtName.Text.ToString();
            string newGender = RadioGender.Text.ToString();
            int    id        = Int32.Parse(data.Id.ToString());

            if (UpdateProfileController.UpdateProfileValidation(newEmail, newName, newGender, oldEmail) == true)
            {
                UpdateProfileController.UpdateUserDataController(newEmail, newName, newGender, id);

                Response.Redirect("Profile.aspx");
            }
            else
            {
                LblError.Text = "Enter the right ID!";
            }
        }