前端之家收集整理的这篇文章主要介绍了
如何在ASP.NET和C#中加载下拉列表?,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何在asp.net和c#中加载下拉列表?
您也可以声明性地执行此操作:
<asp:DropDownList runat="server" ID="yourDDL">
<asp:ListItem Text="Add something" Value="theValue" />
</asp:DropDownList>
您还可以绑定数据:
yourDDL.DataSource = YourIEnumberableObject;
yourDDL.DataBind();
编辑:如评论中所述,您还可以以编程方式添加项目:
yourDDL.Items.Add(YourSelectListItem);
原文链接:https://www.f2er.com/aspnet/246259.html