how to implement search in dropdown list..any can help me.
Refer
Filter and Search ASP.Net DropDownList items using JavaScript
MyDropDown.SelectedIndex = MyDropDown.Items.IndexOf(MyDropDown.Items.FindByValue(whatEverYouWannaSearch));
e.g
string a = "Mango" MyDropDown.SelectedIndex = MyDropDown.Items.IndexOf(MyDropDown.Items.FindByValue(a));
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.