产品编辑页面 使联动的DropDownList1 DropDownList2显示原来显示的值
string bb = reader["bigclass"].ToString().Trim();
string ss = reader["smallclass"].ToString().Trim();
// this.DropDownList1.Items.FindByValue(bb).Selected = true;
// this.DropDownList2.Items.FindByValue(ss).Selected = true;
DropDownList1.SelectedValue=bb;
DropDownList2.SelectedValue=ss;