如何获取选中的dropdownlist的项对应绑定数据的id(主键)
c#.net以下是我在网上找的,感觉不是我想要的答案:第一个答案:stringa=dropdownlist.SelectedText;//获取选中的textstringb...
c#.net
以下是我在网上找的,感觉不是我想要的答案:
第一个答案:
string a = dropdownlist.SelectedText;//获取选中的text
string b = dropdownlist.SelectedValue; //获取选中的value
int c = dropdownlist.SelectedIndex; //获取选中的索引
如果你的dropdownlist.datasource是在pageload里面绑定的话很有可能是由于不断的初始化(不断的执行dropdownlist.datasource)导致每回都取道的默认值一般用ispostback来回避这种情况。
第二个答案:
((DropDownList)DlGoods.Items.FindControl("DdlMainClass")).DataValueField = "MID";
((DropDownList)DlGoods.Items.FindControl("DdlMainClass")).DataTextField = "MName"; 展开
以下是我在网上找的,感觉不是我想要的答案:
第一个答案:
string a = dropdownlist.SelectedText;//获取选中的text
string b = dropdownlist.SelectedValue; //获取选中的value
int c = dropdownlist.SelectedIndex; //获取选中的索引
如果你的dropdownlist.datasource是在pageload里面绑定的话很有可能是由于不断的初始化(不断的执行dropdownlist.datasource)导致每回都取道的默认值一般用ispostback来回避这种情况。
第二个答案:
((DropDownList)DlGoods.Items.FindControl("DdlMainClass")).DataValueField = "MID";
((DropDownList)DlGoods.Items.FindControl("DdlMainClass")).DataTextField = "MName"; 展开
2个回答
展开全部
C# 在WEB 开发时,有一个Page_Load事件,在这个事件中写数据绑定事件。
procted void Page_Load(object sender ,EventArgs e)
{
if(!IsPostBack){
.....
DropDownList1.DataSource= tb //DrowDownList1 表示下拉框的些tb 表示从数据库取回数据
// 这里假设有tb 中有 FieldID 也 FieldText 字段。
DropDownList1.DataValueField = "FieldID";
DropDownList1.DataTextField = "FieldText";
DropDownList1.DataBind();
}
用另一个方法取值
private int GetDropDownSelectedID(){
int rInt= 0;
rInt = DropDownList1.SelectedItem=!null? (int)DropDownList1.SelectedValue: rInt;
return rInt;
}
调用以上方法即可。
procted void Page_Load(object sender ,EventArgs e)
{
if(!IsPostBack){
.....
DropDownList1.DataSource= tb //DrowDownList1 表示下拉框的些tb 表示从数据库取回数据
// 这里假设有tb 中有 FieldID 也 FieldText 字段。
DropDownList1.DataValueField = "FieldID";
DropDownList1.DataTextField = "FieldText";
DropDownList1.DataBind();
}
用另一个方法取值
private int GetDropDownSelectedID(){
int rInt= 0;
rInt = DropDownList1.SelectedItem=!null? (int)DropDownList1.SelectedValue: rInt;
return rInt;
}
调用以上方法即可。
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询