ASP.NET DropDownList ListItem 자동선택하기

foreach (ListItem listItem in txtQueueSID.Items)
{
    listItem.Selected = listItem.Value.Contains("NFF");
}