1、通過顯示字符Text
DropDownList.Items.FindByText("你的值").Selected=true;
DropDownList.Items.FindByText("你的值").Selected=true;
如果在設置之前,進行過設置,應用如下格式:
DropDownList.ClearSelection();
DropDownList.Items.FindByText("你的值").Selected=true;
2、通過值Value
DropDownList.Items.FindByValue("你的值").Selected=true;