从ASP.NET DropDownList绑定选定的值

时间:2012-03-06 22:21:31

标签: c# asp.net drop-down-menu bind

当我在.aspx页面中绑定TextBox的值时,我在ListView中执行以下操作:

<asp:TextBox ID="NameTextBox" runat="server" Text='<%# Bind("Name") %>' />

如何以相同的方式绑定DropDownList中的值?

<asp:DropDownList ID="TestDropDownList" runat="server">
   <asp:ListItem Value="Test 1">Test 1</asp:ListItem>
   <asp:ListItem Value="Test 2">Test 2</asp:ListItem>
</asp:DropDownList>

1 个答案:

答案 0 :(得分:3)

要绑定到DropDownList,您可以将数据源绑定到DropDownList控件,并在该阶段指定Text和Value,如:

cmd SqlCommand = new SqlCommand("Your SQL Command Here", conn);

TestDropDownList.DataSource = cmd.ExecuteReader();
TestDropDownList.DataTextField = "Name";
TestDropDownList.DataValueField = "Value";
TestDropDownList.DataBind();

这相当于你试图做这样的事情:

<asp:DropDownList ID="TestDropDownList" runat="server">
   <asp:ListItem Value="<%# Bind("Value") %>"><%# Bind("Name") %></asp:ListItem>
</asp:DropDownList>