我需要代码来清除下拉列表文本而不是项目。喜欢textbox1.text=" ";
请帮帮我。
// I need dropdownlist clear like textbox.
TextBox1.Text = ""; //like this
我需要代码来清除下拉列表文本而不是项目。喜欢textbox1.text=" ";
请帮帮我。
// I need dropdownlist clear like textbox.
TextBox1.Text = ""; //like this
我假设您在 0(第一个)索引处有一个 DropDownList 的空条目(名称值)。
<asp:DropDownList ID="DropDownList1" runat="server">
<asp:ListItem Value="0">***Select***</asp:ListItem>
<asp:ListItem value="10">Foo</asp:ListItem>
<asp:ListItem value="20">Bar</asp:ListItem>
</asp:DropDownList>
并使用 DropDownList1.SelectedIndex 或 SelectedValue 属性重置 ListItem。
DropDownList1.SelectedValue="0";
也许 ...
MyDropDownList.Items.Clear();
用这个:
DropDownList1.SelectedIndex = 0;