You must Sign In to post a response.
  • Category: ASP.Net MVC

    Custom filter - action filter not working

    i created a folder called ActionFilters and add a class called Mylogactionfilter.cs but the class does not cteate cutom functions. my doubt is how to create Custom ActionFiltes ? .
  • #770097
    You can create a custom action filter in two ways, first, by implementing the IActionFilter interface and the FilterAttribute class. Second, by deriving the ActionFilterAttribute abstract class.


  • Sign In to post your comments