绑定数据源:
Award_Add awardData=new Award_Add() ; DataTable Dtable=awardData.GetDataDownListText(); this.DropDownList1.DataSource=Dtable; this.DropDownList1.DataTextField="typename"; this.DropDownList1.DataValueField="id"; this.DropDownList1.DataBind();
调用:
this.DropDownList1.SelectedValue;//获得ddlBrand.DataValueField的值,即typename。
this.DropDownList1.SelectedItem.Text;//获得ddlBrand.DataTextField的值,即id。
恩,谢谢,问题解决了
我看你上面的代码已经绑定了。你看看源代码,有没有ID的值。如果有那说明 dropdownlist1.selectedvalue.tostring();这边的属性错了