📅  最后修改于: 2023-12-03 14:39:23.064000             🧑  作者: Mango
ASP.NET 是一种用于创建 Web 应用程序的开放式 Web 应用程序框架。ASP.NET 由两部分组成:视图引擎和控件。
asp:DropDownList 是其中一个控件。DropDownList 控件允许用户从预定义的选项列表中选择一个选项。 它可用于 Web 表单上,作为一个下拉列表。
以下是如何在 C# 中使用 asp:DropDownList 控件。
在继续本教程之前,您需要了解以下知识:
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Text="Select One"></asp:ListItem>
<asp:ListItem Text="One"></asp:ListItem>
<asp:ListItem Text="Two"></asp:ListItem>
<asp:ListItem Text="Three"></asp:ListItem>
</asp:DropDownList>
protected void Page_Load(object sender, EventArgs e)
{
if (!IsPostBack)
{
DropDownList1.SelectedIndex = 0;
}
}
在这个例子中,我们检查是否为首次加载页面。如果是,那么我们将 DropDownList1 的 SelectedIndex 属性设置为 0,即 Select One。
使用 asp:DropDownList 控件可以让您的应用程序拥有一个预定义的下拉列表,使用户能够更轻松地选择选项。而且,通过 C# 代码,您可以更加方便地控制 DropDownList 控件。