Does anybody know of an easy way to put a dropdownlist into a datagrid. I'm just doing your run of the mill datagrid, with an edit and delete button.
Printable View
Does anybody know of an easy way to put a dropdownlist into a datagrid. I'm just doing your run of the mill datagrid, with an edit and delete button.
Use a TemplateColumn. It will look something like this (within the Columns section of your datagrid)
Code:<asp:TemplateColumn>
<ItemTemplate>
<select>
blah blah blah
</select>