I created a form for a new item in a list and I use asp:dropdownlist:
<asp:DropDownList runat="server" id="DropDownList1">
<asp:ListItem>choice 1</asp:ListItem>
<asp:ListItem>choice 2</asp:ListItem>
</asp:DropDownList>
I need to save one of the choices in a column.
How do I bind this dropdownlist with a specific column for saving the selected value?