Esempio n. 1
0
 protected void FillCountryCombobox()
 {
     try
     {
         DataTable dt = new DataTable();
         dt = VSWebBL.SecurityBL.LocationsBL.Ins.GetAllCountries();
         CountryCombobox.DataSource = dt;
         CountryCombobox.TextField  = "Country";
         CountryCombobox.ValueField = "Country";
         CountryCombobox.DataBind();
     }
     catch (Exception ex)
     {
         Log.Entry.Ins.WriteHistoryEntry(DateTime.Now.ToString() + " Exception - " + ex);
         throw ex;
     }
     finally { }
 }