DropDownlist 选中

1.DropDownlist.SelectedIndex=DropDownlist.Items.IndexOf(DropDownlist.Items.FindByValue(initValue));

2.  foreach(   ListItem   item   in   dropdownlist.Items   )  
  {  
      if   (   item.value   ==   ID   )  
      {  
          item.Selected   =   true;  
          break;  
      }  
  }

你可能感兴趣的:(list)