本文介绍了DropDownList1是通过DataBind()进行绑定的方式是什么.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
hai,
hai,
DropDownList1.DataTextField ="textname";
DropDownList1.DataTextField ="textid";
DropDownList1.DataBind();
在DropDownList框中进行数据绑定的方式是什么.
谢谢,
Karthikeyan
what are ways databind in DropDownList box.
thanks,
Karthikeyan
推荐答案
// Specify the data source and field names for the Text
// and Value properties of the items
// in the DropDownList control.
DropDownList1.DataSource = YourDataSourceHere();
DropDownList1.DataTextField = "textname";
DropDownList1.DataValueField = "textid";
// Bind the data to the control.
DropDownList1.DataBind();
// Set the default selected item, if desired.
DropDownList1.SelectedIndex = 0;
谢谢,
Mamun
Thanks,
Mamun
这篇关于DropDownList1是通过DataBind()进行绑定的方式是什么.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!