I have seen many times developers get confused when they want to select a particular item in the dropdown list, based on the text using C#.
The following code will help you to accomplish this.
cboState.SelectedIndex = cboState.Items.IndexOf(cboState.Items.FindByText("text"));
Note: cboState is the Id of my DropDown List.