1. 數據綁定
復制代碼 代碼如下:
this.DropDownList1.DataSource = CategoryManager.getCategories();
DropDownList1.DataValueField = "id";//用來設置下拉列表選中的 Value 值
DropDownList1.DataTextField = "name";//為下拉列表選項顯示的值
DropDownList1.DataBind();
2.讀取數據
復制代碼 代碼如下:
int categoryId = int.Parse(this.DropDownList1.SelectedItem.Value);//獲取下拉列表中選中的值