En principio deberias pasarnos el codigo para que podamos ayudarte, sino es muy dificil deducir que intentas hacer. De todas formas, entiendo que necesitas hacer algo como esta:
Código:
try
{
List.SelectedValue = ItemTextBox.Text;
MessageLabel.Text = "You selected " + List.SelectedValue + ".";
}
catch (Exception ex)
{
List.SelectedValue = null;
MessageLabel.Text = "Item not found in ListBox control.";
}