Using an asp.net gridview, I can autogenerate edit or delete buttons by setting:
myGrid.AutoGenerateEditButton = true
myGrid.AutoGenerateDeleteButton = true
Is it possible to enable/disable these buttons on a per-row basis? If not, is there a way to create a button, maybe in RowDataBound ?
If you name your Buttons accordingly you can access them inside the RowDatraBound event handler: