摘要: 若您的DropDownList項目來自資料庫, 您可以這麼寫:DataSet ds = ....;myDropDownList.DataSource = ds.Tables[0].DefaultView;myDropDownList.DataTextField="vDesc";myDropDownList.DataValueField="ID";myDropDownList.DataBind();... 阅读全文