程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> C# DropDownList綁定添加新數據的幾種方法,

C# DropDownList綁定添加新數據的幾種方法,

編輯:C#入門知識

C# DropDownList綁定添加新數據的幾種方法,


第一種:在前台手動綁定(適用於固定不變的數據項)

<asp:DropDownList ID="DropDownList1" runat="server">
    <asp:ListItem Value="1">南京</asp:ListItem>
    <asp:ListItem Value="2">揚州</asp:ListItem>
    <asp:ListItem Value="3">徐州</asp:ListItem>
    <asp:ListItem Value="4">蘇州</asp:ListItem>
</asp:DropDownList>

第二種:在後台動態綁定

DataTable dt = new DataTable ();
//中心思想就是將下拉列表的數據源綁定一個表(這裡沒有對表進行賦值)
DropDownList1.DataSource = dt.DefaultView;
//設置DropDownList空間顯示項對應的字段名,假設表裡面有兩列,一列綁定下拉列表的Text,另一列綁定Value
DropDownList1.DataValueField = dt.Columns[0].ColumnName;
DropDownList1.DataTextField = dt.Columns[1].ColumnName;
DropDownList1.DataBind();

第三種:自定義添加

//方法一:分步進行
ListItem li = new ListItem();
li.Text = "南京";
li.Value = "1";
DropDownList1.Items.Add(li);
//方法二:ListItem()第一個參數是Text的值,第二個參數是Value的值
ListItem li = new ListItem("揚州", "2");
DropDownList1.Items.Add(li);
//方法三:一步到位
DropDownList1.Items.Add(new ListItem("徐州", "3"));
//方法四:(循環添加)
string[] city={"南京","揚州","徐州","蘇州"}; 
for(int i=0;i<city.Length;i++)
{
    DropDownList1.Items.Insert(i,city[i]);
    DropDownList1.Items[i].Value = i.ToString();
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved