.net 怎么将数据库中获得的数据绑定到select控件
1个回答
展开全部
有select控件吗?
你是想绑定到下拉框吧??
代码:
#region comboBox绑定已添加的模板职位
string sql = "select * from uped";
SqlDataAdapter da = new SqlDataAdapter(sql, Class1.cn);
DataSet ds = new DataSet();
da.Fill(ds,"uped");
comboBox1.DisplayMember = ds.Tables[0].Columns["upall"].ColumnName;
// upall ds中的列名
comboBox1.ValueMember = ds.Tables[0].Columns["upall"].ColumnName;
comboBox1.DataSource = ds.Tables[0].DefaultView;
dataGridView1.Columns[0].ReadOnly = true;
#endregion
你是想绑定到下拉框吧??
代码:
#region comboBox绑定已添加的模板职位
string sql = "select * from uped";
SqlDataAdapter da = new SqlDataAdapter(sql, Class1.cn);
DataSet ds = new DataSet();
da.Fill(ds,"uped");
comboBox1.DisplayMember = ds.Tables[0].Columns["upall"].ColumnName;
// upall ds中的列名
comboBox1.ValueMember = ds.Tables[0].Columns["upall"].ColumnName;
comboBox1.DataSource = ds.Tables[0].DefaultView;
dataGridView1.Columns[0].ReadOnly = true;
#endregion
参考资料: ..
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询