ASP.NET dropdownlist绑定的值 怎样在绑定后移除一个值

2024-12-18 22:14:43
推荐回答(2个)
回答1:

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);
}
}

回答2:

属性里面有