Project DescriptionCreating a common library with ASP.NET MVC Action Filters.An
action filter is an attribute you can slap on an action method in order
to run some code before and after the action method executes.
Typically, an action filter represents a cross-cutting concern to your
action method. Output caching is a good example of a cross-cutting
concern.On the web you'll be able to find dozen of ASP.NET MVC
Action Filters. Most of them are outdated and developed for pre-builds
of ASP.NET MVC. Therefore...