dropdownlist问题,
我这样定义了一个ddl,并把一个数组的数据给了它:ArrayList wj_al_temp=new ArrayList();
DropDownList1.DataSource=wj_al_temp;
DropDownList1.DataBind();
有没有方法把其中某个值做为默认选中项啊???
比如:其值等于string aaa的项,aaa的值我动态给定,
而我要的是根据我给的aaa的值,把不同项设为默认项~
DropDownList1.Items.Insert(0,new ListItem("请选择",""));
DropDownList1.Items[0].Selected = true;