vs.net中的DropDownList的datasource怎样使用?
2个回答
展开全部
这个属性是用来指定DropDownList的数据源的,假使这里我们已经得到一个DataSet对象ds做为数据源,那么对DropDownList的数据绑定就可以这样写:
this.DropDownList1.DataSource = ds;
this.DropDownList1.DataTextField = "显示文本";
this.DropDownList1.DataValueField = "隐藏值";
this.DropDownList1.DataBind();
this.DropDownList1.DataSource = ds;
this.DropDownList1.DataTextField = "显示文本";
this.DropDownList1.DataValueField = "隐藏值";
this.DropDownList1.DataBind();
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询