摘要:DropDownList 第一筆為自訂資料,後面資料讀資料庫
DropDownList.DataSource = list;//list為Datatable或其它資料容器
DropDownList.DataTextField = "name";
DropDownList.DataValueField = "ID";
DropDownList.DataBind();
//以下為在BINDING後加入第一筆資料
ListItem LI=new ListItem();
LI.Text="--SELECT--";
LI.Value="0";
DropDownList.Items.Insert(0, LI);
DropDownList.SelectedIndex = 0;