c# - ASP .NET - Save copy of existing data before updating in GridView -
I want to ensure that websites do not disturb the user's primary data table so that each updated unauthorized data is updated. History should be stored in the table.
I am thinking of using 'ROWUpdating' event on GridView to do this.
- Gridview feeds 1 field 2 test 1234 shows:
- User GridView value field 1 field 2 test 3333 3A User selects the 'Update' button 3b Selects the system records that the data was tested, 1234
You can set triggers on the primary data table that tells updates of different history tables. As long as the UI is not being very busy and rests on the table like a madman, a trigger may be appropriate.
Comments
Post a Comment