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
The DropDownList inherits the Items collection from the ListControl. Since Items is an Array, you can use this syntax:
dropdownlist1.Items.Contains(textbox1.Text) as a boolean.