I need to create several actions for the gridview — for example, Approve, Deny, and Revert.
I can do this by creating a button field for each action:
<asp:ButtonField ButtonType="Link" CommandName="Approve" Text="Approve" /> <asp:ButtonField ButtonType="Link" CommandName="Deny" Text="Deny /> <asp:ButtonField ButtonType="Link" CommandName="Return" Text="Deny" />
However, a single column is created for each button.
Is there a way to have the same functionality, but combine them into one column?
chris
source share