0

我想从数据库中动态选择一个项目到下拉列表中。
我可以设置下拉列表的 value 属性,但我无法设置 item 属性,为什么会这样?
我的数据库中存储了文本,因此我必须从下拉列表中选择项目。

添加注释代码

  string strGetBooking = travService.SEL_TourManualBooking("", long.Parse(hdtmbid.Value));
  if (strGetBooking != "") 
  {
      DataSet ds = new DataSet(); 
      ds.ReadXml(new StringReader(strGetBooking)); 
      DataTable dt = ds.Tables[0];
      drpTour.SelectedItem = dt.Rows[0]["FKTBID"].ToString(); 
  }  
4

2 回答 2

3
SelectedIndex -- > The index number of the selected item 
SelectedItem -->  The text of the selected item (Text And Value)
SelectedValue--> The value of the selected item 
Text-- > The value of the selected item 
于 2013-01-29T06:47:40.073 回答
0

尝试这个 -

    // dropDown = Your Dropdown
    //dbValue = your database value(String Value)
    dropDown.SelectedText = dbValue;

[编辑]

你可以用另一种方式做到这一点 -

dropDown.SelectedIndex = dropDown.Items.IndexOf(dropDown.Items.FindByText(dbValue));
于 2013-01-29T06:20:24.520 回答