I have a data grid and I am data bindding it to an array like this
myDataGrid.DataSource = vals;
myDataGrid.DataBind();
So the first column shows fine, How can I add a column ON THE RIGHT of buttons?
This is the only thing I have, and it is binded to my array
<asp:DataGrid runat="server" ID="myDataGrid"
BorderColor="Tan" BorderWidth="1px" CellPadding="2" ForeColor="Black"
GridLines="None">
</asp:DataGrid>
That will add a new column of buttons to your datagrid.