Any idea why the selected value in a list is not changing? eventhough I specifically change the value to "true":
ListItem selectedListItem = QDropDownList.Items.FindByValue(recStr[i]);
if (selectedListItem != null)
{//if the previous value exists in the new populated list
selectedListItem.Selected = true;
}
Go to the complete details ...