hi, I have created a datagrid that pull record from one table. The table called contact_log and it has a field called followupAction. For every change in any record, I want to capture the old data for the followup filed to be archived in another table, so
client_call_log table
-----------------------------
client_id | name | followupAction
--------------------------------------------------
1 | Bob | Jone completed the order on 3/2/2004
followup archive table
-------------------------
id | client_id | followupAction_history
------------------------------------------------------
1 | 1 | Smith logged client request on 2/4/2004
2 | 1 | Kim processed client order on 2/7/2004
3 | 1 | kim contacted processed pmt on 3/1/2004
I want to be able to see the latest followup action in the client_call_log table at the same time I want to save all previous follow up actions in a separate table like the one shown above.
I am not sure how to do it in Access database, but when using sql server, I can use the trigger to capture the old field value and insert in the followup_archive table. But the problem I am not using MS sql server, I am using MS Access 2000 and the trigger is not available when creating asp.net page.
Does any one has an idea of how to capture old field data and save it. thanks for your help.
Al
client_call_log table
-----------------------------
client_id | name | followupAction
--------------------------------------------------
1 | Bob | Jone completed the order on 3/2/2004
followup archive table
-------------------------
id | client_id | followupAction_history
------------------------------------------------------
1 | 1 | Smith logged client request on 2/4/2004
2 | 1 | Kim processed client order on 2/7/2004
3 | 1 | kim contacted processed pmt on 3/1/2004
I want to be able to see the latest followup action in the client_call_log table at the same time I want to save all previous follow up actions in a separate table like the one shown above.
I am not sure how to do it in Access database, but when using sql server, I can use the trigger to capture the old field value and insert in the followup_archive table. But the problem I am not using MS sql server, I am using MS Access 2000 and the trigger is not available when creating asp.net page.
Does any one has an idea of how to capture old field data and save it. thanks for your help.
Al