protected void ButtonSalva_Click(object sender, EventArgs e)
    {
        SetValues();

        switch (qMODALITA)
        {
        case "EDIT":
            try
            {
                objUtente.Ute_aggiornato_da = idLoggedUser;
                objUtente.Ute_id_utente     = qID_TABELLA_PADRE;
                objUtente.UpdateProcessoAutorizzativo();
            }
            catch (Exception ex)
            {
                // Gestione messaggistica all'utente e trace in DB dell'errore
                ExceptionPolicy.HandleException(ex, "Propagate Policy");
            }
            break;
        }
    }