C#: How to check if value exists in DropDownList
//Tested on .NET 2.0
public static bool IsValueInDropdownList(DropDownList controlName,
string strValue)
{
if (controlName.Items.FindByValue(strValue) != null)
return true;
return false;
}

(771)

