Gridview changing text in a button column
- by Bob Avallone
I am working in asp.net using the gridview control. I have a button column that I create dynamically as such:
ButtonField bfSelect = new ButtonField();
bfSelect.HeaderText = "View";
bfSelect.ButtonType = ButtonType.Link;
bfSelect.CommandName = "View";
bfSelect.Text = "View";
…