1、通过显示字符Text
DropDownList.Items.FindByText("你的值").Selected=true;
如果在设置之前,进行过设置,应用如下格式:
DropDownList.ClearSelection();
DropDownList.Items.FindByText("你的值").Selected=true;
2、通过值Value
DropDownList.Items.FindByValue("你的值").Selected=true;
时间: 2024-10-08 07:40:58