I'm using an asp:DetailsView control with auto generated "Edit" and "Insert" buttons. So far its been working reasonably well.
However the client has asked that the "Update" and "Insert" labels be changed to "Save".
At this point I can see two options:
- Trap the mode changes for the view and "find" the controls to modify them as appropriate.
- Don't auto generate the edit and insert buttons, and instead do all the button logic myself.
Both options seem like an annoying amount of work. Any other options? What do you recommend?