DropDownList1,DropDownList2都是从数据库里读数据,然后两个DropDownList里添加
ListItem aa = new ListItem();
aa.Text = "请选择";
aa.Value = "0";
DropDownList1.Items.Insert(0,aa);
DropDownList2.Items.Insert(0,aa);
当我进行数据定位的时候
DropDownList1.SelectedValue = "1";
DropDownList2.SelectedValue = "0";
失败!
DropDownList1.SelectedValue = "1";
DropDownList2.SelectedValue = "1";
成功!
DropDownList1.SelectedValue = "0";
DropDownList2.SelectedValue = "1";
成功!
DropDownList1.SelectedValue = "0";
DropDownList2.SelectedValue = "0";
成功!
失败的时候提示:DropDownList 不能有多个项被选定。 
郁闷了