close
[VB]
If Not IsNothing(DropDownList1.Items.FindByText(strText)) Then
DropDownList1.Items.FindByText(strTex)).Selected = True
End If
[C#]
if ((DropDownList1.Items.FindByText(str))!=null)
{
DropDownList1.Items.FindByText(str).Selected = true;
}
文章標籤
全站熱搜
留言列表