DropDownList设置选定项,设置选择项,最安全的方法
时间:2011-04-27 来源:hen
DropDownList设置选定项
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue("中国"));
如果通过FindByValue没有找到指定项则为null,而Items.IndexOf(null)会返回-1
相关阅读 更多 +
时间:2011-04-27 来源:hen
DropDownList设置选定项
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue("中国"));
如果通过FindByValue没有找到指定项则为null,而Items.IndexOf(null)会返回-1