我只想要一个没有选定项目的 ASP.NET DropDownList。到目前为止,将 SelectedIndex 设置为 -1 无济于事。我将Framework 3.5 与AJAX 一起使用,即这个DropDownList 在UpdatePanel 中。这是我正在做的事情:
protected void Page_Load (object sender, EventArgs e)
{
this.myDropDownList.SelectedIndex = -1;
this.myDropDownList.ClearSelection();
this.myDropDownList.Items.Add("Item1");
this.myDropDownList.Items.Add("Item2");
}
当我在 DropDown 中添加一个元素时,它的 SelectedIndex 更改为 0,并且不能再设置为 -1(我也尝试在添加项目后调用 SelectedIndex)......我做错了什么?蚂蚁帮助将不胜感激!