我有一个带有以下代码的gridview:
<asp:TemplateField HeaderText="Column1">
<EditItemTemplate>
<asp:Label ID="Label1" runat="server" Text='<%# Bind("Column1") %>'></asp:Label
</EditItemTemplate>
<ItemTemplate>
<asp:DropDownList ID="DropDownList1" runat="server" Width="125px">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
我想绑定一个sql语句来填充下拉列表...
从Table1中选择Column1我会通过后面的代码执行此操作吗?
答案 0 :(得分:0)
如果您愿意,可以在代码隐藏中执行此操作,或者,如果它适用于您的情况,则可以使用ObjectDataSource Web服务器控件。
更多阅读:ObjectDataSource Web Server Control Overview
以下是有关如何将ObjectDataSource绑定到下拉列表的示例:asp.net ObjectDataSource example: how to populate DropDownList