有以下幾種方法可以綁定數據到 DropDownList 控件:
例如:
DropDownList1.DataSource = data;
DropDownList1.DataBind();
例如:
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetData" TypeName="YourDataClass"></asp:ObjectDataSource>
<asp:DropDownList ID="DropDownList1" runat="server" DataSourceID="ObjectDataSource1" DataTextField="FieldName" DataValueField="ValueField"></asp:DropDownList>
例如:
<asp:DropDownList ID="DropDownList1" runat="server"
DataTextField='<%# Eval("FieldName") %>'
DataValueField='<%# Eval("ValueField") %>'
DataSource='<%# data %>'>
</asp:DropDownList>
這些方法可以根據實際需求選擇適合的方法來綁定數據到 DropDownList 控件。