DropDownList设置选定项

DropDownList设置选定项,设置选择项,最安全的方法:

DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue("中国"));
如果通过FindByValue没有找到指定项则为null,而Items.IndexOf(null)会返回-1

有网友说可以直接使用 selectedValue=“中国” 对吗?

你可能感兴趣的:(DropDownList设置选定项)