how to select with DropDownList.text

前端 未结 8 2382
逝去的感伤
逝去的感伤 2020-12-28 21:56

I am working on an Asp.NET project and I am trying to set the selected value of a dropdown list with a text property. For example i have i.e an item in the dropdown list wit

8条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-28 22:42

    This works in Web

    ListItem li=new ListItem(); 
    
    li.Text="Stringxyz";
    li.Value="Stringxyz";       // Create object of item first and find its index.
    
    DropDownList1.SelectedIndex = DropDownList1.Items.IndexOf(li);
    

    This also works fine.

提交回复
热议问题