Understanding ASP.NET MVC Filters and Attributes View Article Information Posted Date: 9. June 2014 Author: Anil Sharma Categories: ASP.NET MVC Keywords: Types of filters in asp.net mvc, asp.net mvc5 filters, custom filters in mvc5, Custom Filters, ASP.NET MVC Filters, MVC Filters and Attributes ASP.NET MVC Filters allow us to inject extra logic into MVC Framework request processing, this logic either before or after an action is executed. They provide a simple and elegant way to implement cross-cutting concerns. This term refers to functionality that is used all over an application and doesn’t fit neatly into any one place, where it would break the separation of concerns pattern. Classic examples of cross-cutting concerns are logging, authorization, and caching. [Continue Reading]