当前位置:编程学习 > C#/ASP.NET >>

下拉框一旦绑定,如何取得下拉框中的值?

this.comboBox1.DataSource = ds.Tables["a"];
this.comboBox1.DisplayMember = "NavigateLN";

我现在要取得this.combobox1.text,但是怎么取都取不出来,this.comboBox1.SelectedValue;这样也不对,有没有大哥帮忙一下 --------------------编程问答-------------------- 用this.combobox1.text就可以呀 --------------------编程问答--------------------
引用 1 楼 qqiuzaihui 的回复:
用this.combobox1.text就可以呀

没有这么简单的,大哥 --------------------编程问答-------------------- 设置了ValueMember么? --------------------编程问答-------------------- 把combobox1的 DropDownStyle   设置为DropDownList --------------------编程问答--------------------
DataRowView drv = (DataRowView)comboBox1.SelectedItem;
string NavigateLN= drv.Row["NavigateLN"].ToString();
补充:.NET技术 ,  C#
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,