我在使用 ASP.NET Web 表单 DropDownList 时出现了这种意外行为。我将 ListItems 添加到下拉列表中,一切看起来都很好。除了 ddl 中的值(在我的例子中是 Id)从未设置外,它被 ListItem 中的文本替换。
<asp:DropDownList ID="ddl1" runat="server">
</asp:DropDownList>
private void Populate()
{
List<ListItem> list = new List<ListItem>();
foreach (var item in GetItems())
{
list.Add(new ListItem(item.name, item.id.ToString()));
//in the drop down list the ListItem.Value is being replaced
//by ListItem.Text when it is added to the ddl
}
ddl1.DataSource = list;
ddl1.DataBind();
ddl1.Items.Add(new ListItem("Make a selection"));
}
private List<Stuff> GetItems()
{
List<Stuff> list = new List<Stuff>();
list.Add(new Stuff{ name = "bill", id = 1});
list.Add(new Stuff{ name = "james", id = 2});
return list;
}
private struct Stuff
{
public string name;
public int id;
}
如果这是要发生的事情,有什么想法吗?如果是我如何在 ddl 中存储名称和 ID?