Selecting an asp.net dropdownlist by text.
1We are quite familier with this statement. dropdown1.SelectedIndex=3 This is how we normally get the dropdownlist selected. But when we want to do the same by the text rather than the index, here is how we do it dropdown1.Items.FindByText(“item2″).Selected =… Read more ›


