Drop Down List In A Gridview
- by Or Betzalel
I have a gridview, inside the gridview I have a template field and inside that, a drop down list.
<asp:TemplateField>
<ItemTemplate>
<asp:DropDownList ID="Hello" runat="server">
</asp:DropDownList>
</ItemTemplate>
</asp:TemplateField>
I want to databind the gridview but how do I make the drop down list change its value to according to the information I gave it while databinding?
Im used to using DataField in bound fields
<asp:BoundField HeaderText="Hello" DataField="HelloDB" />