I’m a big fan of ASP.net MVC especially all of the native features and conventions built in. One of my favorite features has always been how easy it is to set up client and server side validation within MVC via some simple attributes on my models. While there are a lot of built in validations I find myself writing custom…
Month: October 2014
Logging Additional Properties in Log4net
Log4net is a great logging framework that I find myself using whenever I need to setup logging in my projects. Normally I setup some basic logging to text files and that is sufficient for most projects. Recently I had a situation arise where I needed to add some additional target debug logging to a project to help troubleshoot an issue. …