asp.net 绑定数组数据到下拉列表,绑定数组到DropDownList,数据绑定

前台代码:
<asp:DropDownList ID = "ddlHPZL" runat = "server" Width = "130px"></asp:DropDownList>


后台代码:
#region 绑定号牌号码

string[] iniHPHM = new string[];
iniHPHM = ["辽P,京A,京B,吉C,黑D,云E,蒙F,"];
string[] HPHM = new string[iniHPHM.Split(',').Length - 1];//开辟数组空间
HPHM = iniHPHM.Split(',');
for (int i = 0; i < HPHM.Length - 1; i++)
{
	ddlHPHM.Items.Add(new ListItem(HPHM[i],i.ToString()));
}
ddlHPHM.Items.Insert(0, "--请选择号牌号码--"); //设置插入静态的数据

#endregion 绑定号牌号码


黑色头发:http://heisetoufa.iteye.com/

你可能感兴趣的:(C++,c,.net,asp.net,asp)