Coolite Combobox 后台设置默认选项的方式

SelectedIndex是读,不能写。

最终找到了解决方法:

DropDownList_shoplist.SelectedItem.Value = DropDownList_shoplist.Items[0].Value;

就是设置SelectedItem.Value 

原文地址:https://www.cnblogs.com/zc22/p/1596326.html