Esempio n. 1
0
 protected void AccessData()
 {
     try
     {
         DataTable dt = new DataTable();
         objUtente.SqlWhereClause = VWhereClause;
         dt = objUtente.ListDropDownViaggiatore().Tables[0];
         GridViewRpgUtenti.DataSource = dt;
         GridViewRpgUtenti.DataBind();
         LabelNroRecord.InnerText = GetValueDizionarioUI("UTENTI") + " : " + dt.Rows.Count.ToString();
     }
     catch (Exception ex)
     {
         ExceptionPolicy.HandleException(ex, "Propagate Policy");
     }
 }