报错:不能在 DropDownList 中选择多个项收藏
做了个二级联动,因为图简单,用了updatepanel,莫名其妙的弹了个错误出来
"不能在 DropDownList 中选择多个项",用以下方法解决了
this.DDL_Subject.ClearSelection(); //加这句清空就没事了
this.DDL_Subject.Items.FindByText(subjectname).Selected = true;
"不能在 DropDownList 中选择多个项",用以下方法解决了
this.DDL_Subject.ClearSelection(); //加这句清空就没事了
this.DDL_Subject.Items.FindByText(subjectname).Selected = true;