public void fillcombo(string stattype) { DataTable dt = new DataTable(); dt = VSWebBL.ReportsBL.ReportsBL.Ins.GetDominoStatList(stattype); StatComboBox.DataSource = dt; StatComboBox.TextField = "StatName"; StatComboBox.ValueField = "StatName"; StatComboBox.DataBind(); }
public void fillcombo() { DataTable dt = new DataTable(); dt = VSWebBL.ReportsBL.ReportsBL.Ins.GetSametimeStatNames(); StatComboBox.DataSource = dt; StatComboBox.TextField = "StatName"; StatComboBox.ValueField = "StatName"; StatComboBox.DataBind(); StatComboBox.SelectedIndex = 0; }