设置数据表选中的值: 

dropdowslist.selectedIndex=-1   

  dropdownlist.Items.findbyvalue(你的值).selected=true   

  或   

  dropdownlist.Items.findbytext(你的值).selected=true   for   example:   

  drop1.Items.FindByValue("5").Selected=true;   

  drop1.Items.FindByText("hello").Selected=true;