个人笔记
当设置DropDownList的AppendDataBoundItems属性为true,是将数据绑定项追加到静态声明的列表上,即在绑定之前可加入静态列表项。
例如:
前台这么写:
<asp:DropDownList ID="DropDownList1" runat="server" AppendDataBoundItems="true">
<asp:ListItem Text="--Please Select--" Value="" Selected="True" />
</asp:DropDownList>
后台:
if(!IsPostBack)
{
DropDownList1.DataSource = dt;//dt为DataTable,作为绑定源
DropDownList1.DataTextField = "Name";//分别为Peter,Tom
DropDownList1.DataValueField = "ID";//分别为1,2
DropDownList1.DataBind();
}
显示效果则是: