Click here to Skip to main content
15,902,938 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
How can I use audit trail in V6?
Posted
Updated 25-Dec-10 23:32pm
v2

You could use the event log as shown here[^].
 
Share this answer
 
When people talk about "audit trails", they're usually referring to databases, where everything done to the data in the database is tracked according to who updated the data, and what the update was. In that case, you would want to set up triggers in the database itself to automatically record said data changes in an audit table.

If you're instead talking about a desktop application, you'd use the system log (or some other logging facility of your own design/implementation).

Of course, web site (or Silverlight app) audit trails would also require code, and optionally a database or log to track users as they navigate the application.

 
Share this answer
 
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900