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:
Both options seem like an annoying amount of work. Any other options? What do you recommend?
It's been awhile, but I believe you can simply use a CommandField, and it will have the same effect as the auto-generated buttons.
<asp:CommandField ShowEditButton="True" ShowInsertButton="true"
EditText="Update" InsertText="Save"></asp:CommandField>