protected void Submit1_OnClick(object sender, EventArgs e)
 {
     try
     {
         string result;
         if (DataBaseUtilities.isAuthenticated(UserEmail.Text.ToString(), UserPass.Text.ToString()))
         {
             HttpContext.Current.Session["isAuth"] = "true";
             Response.Redirect("GestioneStruttura.aspx", false);
             // FormsAuthentication.RedirectFromLoginPage(UserEmail.Text, Persist.Checked);
         }
         else
         {
             HttpContext.Current.Session["isAuth"] = "false";
             Msg.Text = "Utente non riconosciuto. Riprovare";
         }
     }
     catch (Exception ex)
     {
         HttpContext.Current.Session["isAuth"] = "false";
         Msg.Text = "Utente non riconosciuto. Riprovare";
     }
 }