asp.net中listBox如何绑定Table
在ASP.net中,listBox如何绑定Table时,
操作方法
- 01
本例将Table中的列“StationName”绑定到listBox 添加页面代码如下: <asp:ListBox style="width:250px; height:300px" ID="lstAllDevice" DataTextField="StationName" DataMember="StationName" runat="server">
- 02
后台代码如下: lstAllDevice.DataSource = ds.Tables[0] lstAllDevice.DataBind(); 本例中的Table是从数据库查询出来的DataSet(即ds)的表.
赞 (0)