DropDownList比较好的设置值的方式
DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(DropDownList1.Items.FindByValue(xxx));
通过FindByValue没有找到指定项返回值为null,而Items.IndexOf(null)会返回-1
本文来自博客园,作者:广林,转载请注明原文链接:https://www.cnblogs.com/guanglin/archive/2011/04/27/2030434.html