private void getAllGruppo(string id_tipo) { this.cmbsGruppo.Items.Clear(); Classi.ClassiAnagrafiche.Richiedenti_tipo _Richiedenti = new TheSite.Classi.ClassiAnagrafiche.Richiedenti_tipo(); DataSet _MyDs = _Richiedenti.GetAllData().Copy(); if (_MyDs.Tables[0].Rows.Count > 0) { this.cmbsGruppo.DataSource = Classi.GestoreDropDownList.ItemBlankDataSource( _MyDs.Tables[0], "descrizione", "id", "- Selezionare una Gruppo -", ""); this.cmbsGruppo.DataTextField = "descrizione"; this.cmbsGruppo.DataValueField = "id"; if (id_tipo != "") { this.cmbsGruppo.SelectedValue = id_tipo; } this.cmbsGruppo.DataBind(); } }
private void BindGruppo() { this.cmbTipRich.Items.Clear(); TheSite.Classi.ClassiAnagrafiche.Richiedenti_tipo _RIcTip = new TheSite.Classi.ClassiAnagrafiche.Richiedenti_tipo(); DataSet _MyDs1 = _RIcTip.GetAllData(); if (_MyDs1.Tables[0].Rows.Count > 0) { cmbTipRich.DataSource = Classi.GestoreDropDownList.ItemBlankDataSource( _MyDs1.Tables[0], "descrizione", "id", "- Selezionare un Gruppo -", "0"); this.cmbTipRich.DataTextField = "descrizione"; this.cmbTipRich.DataValueField = "id"; this.cmbTipRich.DataBind(); } else { string s_Messagggio = "- Nessun Gruppo -"; this.cmbTipRich.Items.Add(Classi.GestoreDropDownList.ItemMessaggio(s_Messagggio, "-1")); } }