1. 程式人生 > >關於 DropDownList 循環綁定中遇到的問題

關於 DropDownList 循環綁定中遇到的問題

textfield 字符 this uefi 綁定 註意 部分 bsp ava

1綁定DataTable 簡單直接下部分就ok了

this.DropDownList1.DataSource = DataTable;

this.DropDownList1.DataTextField = "Name";
this.DropDownList1.DataValueField = "id";

this.DropDownList1.DataBind();

但是如果循環綁定就有幾個坑

this.DropDownList1.Items.Insert 綁定設置一個請選擇還好, 設置多個不介意使用 設置Value和排序顯示有時候有沖突

建議使用下面這一種,千萬註意寫法

this.DDL_Column.Items.Add(new ListItem(name, id));

一定不要再ListItem裏面拼接字符串啊,裏面不能拼接,這個一個坑

關於 DropDownList 循環綁定中遇到的問題