項目が選択されていない ASP.NET DropDownList が必要です。SelectedIndex を -1 に設定しても、これまでのところ役に立ちません。AJAX で Framework 3.5 を使用しています。つまり、この 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 を呼び出してみました)...何が間違っていますか? アリの助けをいただければ幸いです!