我在 Dropdownlist 中填充数据集时遇到问题。我想在下拉列表中显示我的数据库表中的用户名列,但只显示最后一行值。我被卡住了,搜索了几个小时后我找不到任何解决方案,每个代码几乎都给了我同样的问题。这是我正在尝试做的事情:
Dataset ds = new Dataset();
ds = db.search();
if(ds.Tables[0].Rows.Count>0)
{
DropDownList1.DataSource=ds;
DropDownList1.DataBind();
}
在 ASP 标记中:
<asp:DropDownList ID="DropDownList1" runat="server">
</asp:DropDownList>