ASP.NET MVC 4 Custom Action Filters #1
Exercise 1: Logging Actions In this exercise, you will learn how to create a custom action log filter by using ASP.NET MVC 4 Filter Providers. For that purpose you will apply a logging filter to the MusicStore site that will record all the activities in the selected controllers. The filter will extend ActionFilterAttributeClass and override OnActionExecuting method to catch each request…