I am having a hard time figuring out how to code a series of \"if\" statements that search through different dropdownlists for a specific value entered in a textbox. I was able
You can simply do like this.
if (ddl.Items.FindByValue("value") != null) { ddl.SelectedValue = "value"; };