方法一:
實現代碼
復制代碼 代碼如下:
DropDownList1.DataSource = listSort;
DropDownList1.DataTextField = "LogSortName";
DropDownList1.DataValueField = "LogSortID";
DropDownList1.DataBind();
DropDownList1.SelectedIndex = ddl.Items.IndexOf(DropDownList1.Items.FindByValue("i"));
//i要自己去獲取你要顯示的項的id。
方法二:我貼上部分代碼
獲取數據後 根據該value去配對你想要的項。
不過圖中的for改成 do…while 應該會更省事一點。
其實兩個方法的思路都是一樣,都是拿id去配對…