Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ideas, Tips, Tools, Framework for implementing Audit [closed]

I'm looking for Ideas, Tips, Existing Frameworks (based on .NET), Tools and also your experience on what's the best way to implement a good Audit Trail.

Our typical Applications are nothing fancy ASP.NET MVC 3- Security Layer - Business Layer - Data Access Layer - Database (SQL Server 2008)

My only requirement is that it has to be easy to implement and stored somehow in the Database.

like image 815
gsharp Avatar asked Feb 02 '11 09:02

gsharp


1 Answers

For auditing user actions, I had used Log4Net. While for auditing CRUD operations, triggers were used.

Here you could find some resource articles(Article1, Article2) on implementing Audit log.

like image 121
AbrahamJP Avatar answered Oct 26 '22 23:10

AbrahamJP