⟩ How to add a check box or a dropdown list to a column in a datagrid?
By using template column, as
<asp:TemplateColumn>
<asp:ItemTemplate>
<asp:CheckBox></asp:CheckBox>
<asp:DropDownList></asp:DropDownList>
</asp:ItemTemplate>
</asp:TemplateColumn>