DropDownList.Items.RemoveAt(2); 2就是items的索引
或者:
ListItem[] listItem = new ListItem[DropDownList.Items.Count];
DropDownList.Items.CopyTo(listItem, 0);
foreach (ListItem i in listItem){
if(i.Value == "3"){
DropDownList.Items.remove(i);
}
}
属性里面有