我正在寻找一种方法,它如何绑定 DataSource 中的数据可以通过 ListControl 类上的 Item 属性访问。
谁能给我一个例子,从传递的对象到 DataSource 的属性如何绑定到泛型类 ListItemCollection?如何通过代码完成翻译?
我希望看到的翻译是从 DataSet 到 ListItemCollection。提前感谢您的帮助。
我正在寻找一种方法,它如何绑定 DataSource 中的数据可以通过 ListControl 类上的 Item 属性访问。
谁能给我一个例子,从传递的对象到 DataSource 的属性如何绑定到泛型类 ListItemCollection?如何通过代码完成翻译?
我希望看到的翻译是从 DataSet 到 ListItemCollection。提前感谢您的帮助。
// Setting up a dataset. This dataset has no data; in real life you'd get the
// data from somewhere else, such as a database, and wouldn't need to build it.
DataSet ds = new DataSet();
DataTable dt = new DataTable();
dt.Columns.Add(new DataColumn("ID"));
dt.Columns.Add(new DataColumn("Description"));
ds.Tables.Add(dt);
// Creating a list box. You'd probably have this declared in your HTML and wouldn't need to
// create it.
ListBox listBox1 = new ListBox();
listBox1.DataSource = ds.Tables[0];
listBox1.DataValueField = "ID";
listBox1.DataTextField = "Description";
listBox1.DataBind();
如果您的问题是关于如何在幕后完成绑定,那么答案相当复杂。