C#应用程序comboBox绑定了数据库中的一列值,如张三,李四现在我想在窗体加载时默认选中其中的张三该怎么写?
C#应用程序comboBox绑定了数据库中的一列值,如张三,李四现在我想在窗体加载时默认选中其中的张三该怎么写?comboBox1.SelectedItem=数据库读取某...
C#应用程序comboBox绑定了数据库中的一列值,如张三,李四现在我想在窗体加载时默认选中其中的张三该怎么写?comboBox1.SelectedItem = 数据库读取某一字段数据;方法没用。comboBox总是默认选中第一条数据,而不是默认选中从数据库里面读取的值。测试数据库读取正确。谢谢!
展开
4个回答
展开全部
我经过多次实践的:
ListItem item = comboBox1.Items.FindByText("张三");
if (item != null){item.Selected = true;}
还有一种:
comboBox1.SelectedIndex = comboBox1.Items.IndexOf(comboBox1.Items.FindByValue("张三"));
ListItem item = comboBox1.Items.FindByText("张三");
if (item != null){item.Selected = true;}
还有一种:
comboBox1.SelectedIndex = comboBox1.Items.IndexOf(comboBox1.Items.FindByValue("张三"));
更多追问追答
追问
你写的这些代码是C#窗体应用程序的吗???编译找不到你写的那个方法。谢谢!
追答
不是啊,是WEB的 ,窗体应用程序比这简单多了。
找不到哪个方法?
using System.Web.UI.WebControls;
using System.Web.UI;
展开全部
page——load 里
先绑定到combobox 然后
comboBox1 .selectedValue = 数据库值
或者 foreach combobox。Items
判断值 = 张三 然后 seleted = true
先绑定到combobox 然后
comboBox1 .selectedValue = 数据库值
或者 foreach combobox。Items
判断值 = 张三 然后 seleted = true
追问
我的comboBox赋值方法
IList userPosition = PositionBLL.GetAllPositions();
this.comboBox2.DataSource = userPosition;
this.comboBox2.DisplayMember = "Post";
this.comboBox2.ValueMember = "Id";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
comboBox1.SelectedItem 改成 comboBox1.Selecteindex = 2
追问
使用索引会编译错误!
我的comboBox赋值方法
IList userPosition = PositionBLL.GetAllPositions();
this.comboBox2.DataSource = userPosition;
this.comboBox2.DisplayMember = "Post";
this.comboBox2.ValueMember = "Id";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
comboBox总是默认选中第一条数据
comboBox1.Selecteindex =1
comboBox1.Selecteindex =1
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询