How to edit and update all rows at once in a gridview
in asp.net from single button click.
Any possible way to use gridview.EditIndex = -1;
to edit all rows at once?
How to edit and update all rows at once in a gridview
in asp.net from single button click.
Any possible way to use gridview.EditIndex = -1;
to edit all rows at once?
With built int functionality it's not possible. To do that you need to implement your own logic. I'd recommend to look into Repeater control in this case.