there are two ways selecting a item in a DropDownList
1)
MyDropDownList.ClearSelection();
MyDropDownList.Items.FindByText("Value").Selected = true;
2)
MyDropDownList.ClearSelection();
MyDropDownList.SelectedIndex = MyDropDownList.Items.IndexOf(MyDropDownList.Items.FindByText("Value"));