-3

我需要代码来清除下拉列表文本而不是项目。喜欢textbox1.text=" ";请帮帮我。

// I need dropdownlist clear like textbox.
TextBox1.Text = ""; //like this
4

3 回答 3

0

我假设您在 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";
于 2012-05-25T09:29:06.903 回答
0

也许 ...

MyDropDownList.Items.Clear();
于 2012-05-25T09:29:19.853 回答
0

用这个:

DropDownList1.SelectedIndex = 0;
于 2014-05-15T09:41:39.357 回答