Filters in MVC are attributes which you can apply to a controller action or an entire controller. This will allow us to add pre and post behavior to controller action methods.
There are 4 types of Filters. Which were described in above image.
Objective: Learn about filters and create custom filters for better understanding.
Step 1: Create a simple MVC Web application. Lets see the Output Cache filter first.
I created a View and pertaining Action method. See them below.
View:
Action Method://OutPutTest.cshtml @{ ViewBag.Title = "OutPutTest"; } lt;h2>OutPutTest</h2> <h3>@ViewBag.Date</h3>
Output : so as per the current implementation, the view should be displaying current time with seconds. so for every refresh, the seconds part will be changed...//OutPutTest Action Method [OutputCache(Duration=10)] public ActionResult OutPutTest() { ViewBag.Date = DateTime.Now.ToString("T"); return View(); }
But observe the [OutputCache(Duration=10)] attribute applied to action method. This will make the response cached for 10 seconds. Thus the seconds part will not be changed for next 10 seconds.
Step 2: Authorization Filter : This filter will be executed once after user is authenticated
In this step lets create a custom Authorization filter. For this create a class which inherits AuthorizeAttribute or implements IAuthorizationFilter interface. All we are doing here is just passing a message to View.
public classNow we have our CustomAuthFilter which will be executed immedealty after user is authenticated. But inorder to make it happen we need to apply thisCustAuthFilter : AuthorizeAttribute { public override void OnAuthorization(AuthorizationContext filterContext) { filterContext.Controller.ViewBag.AutherizationMessage = "Custom Authorization: Message from OnAuthorization method."; } }
We have another method OnUnauthorizedRequest event to redirect the unauthorized users to some default pages.
Step 3: Action Filter : There are 4 events available in an action filter.
#1.OnActionExecuting - Runs before execution of Action method.
#2.OnActionExecuted - Runs after execution of Action method.
#3.OnResultExecuting - Runs before content is rendered to View.
#4.OnResultExecuted - Runs after content is rendered to view.
So lets create a CustomActionFilter. Create a class inherting ActionFilterAttribute class of implementing IActionFilter and IResultFilter interfaces.
public classNow all we need to do is to applyCustomActionFilter : ActionFilterAttribute { public override voidOnActionExecuting (ActionExecutingContext filterContext) { filterContext.Controller.ViewBag.CustomActionMessage1 = "Custom Action Filter: Message from OnActionExecuting method."; } public override voidOnActionExecuted (ActionExecutedContext filterContext) { filterContext.Controller.ViewBag.CustomActionMessage2 = "Custom Action Filter: Message from OnActionExecuted method."; } public override voidOnResultExecuting (ResultExecutingContext filterContext) { filterContext.Controller.ViewBag.CustomActionMessage3 = "Custom Action Filter: Message from OnResultExecuting method."; } public override voidOnResultExecuted (ResultExecutedContext filterContext) { filterContext.Controller.ViewBag.CustomActionMessage4 = "Custom Action Filter: Message from OnResultExecuted method."; } }
Step 4: Exception Filter: This filter is used to capture any execptions if raised by controller or an action method. Create a class which will inherit FilterAttribute class and implement IExceptionFilter interface.
public class CustExceptionFilter : FilterAttribute, IExceptionFilter { public void OnException(ExceptionContext filterContext) { filterContext.Controller.ViewBag.ExceptionMessage = "Custom Exception: Message from OnException method."; } }Now all we need to do to handle any exceptions or erros is to apply
Step 5: Now we have all custom filters created. Lets decorate our index action method with them.
Contoller code:
namespace CustomActionFilterMVC.Controllers {Step 6: Now update Index view to reflect all the messages from cutom filters.[CustAuthFilter] public class HomeController : Controller {[CustExceptionFilter] [CustomActionFilter] public ActionResult Index() { ViewBag.Message = "Welcome to ASP.NET MVC!"; return View(); } public ActionResult About() { return View(); }[OutputCache(Duration=10)] public ActionResult OutPutTest() { ViewBag.Date = DateTime.Now.ToString("T"); return View(); } } }
@{ ViewBag.Title = "Home Page"; } <h2>Output Messages :</h2> <br /> <h3>@ViewBag.AutherizationMessage</h3> <br /> <h3>@ViewBag.CustomActionMessage1</h3> <br /> <h3>@ViewBag.CustomActionMessage2</h3> <br /> <h3>@ViewBag.CustomActionMessage3</h3> <br /> <h3>@ViewBag.CustomActionMessage4</h3> <br /> <h3>@ViewBag.ExceptionMessage</h3>
Step 7: Now execute the application and see the out put.
Now compare the output with the view definition and see the differences.
First thing is , we dint have any message from OnResultExecuted event.
Reason: That event will be executed after content is rendered to view, so by that time the view is rendered, OnResultExecuted event is not and message is not yet assigned to ViewBag.
Second thing, we dint have any message from exception filter. If there is any exception raised by the code, then the Exception Filter codee will come into picture.
with this , we have covered different kinds of filters in MVC and how to create custom filters and how to apply them.
Code:
Click Here
Is it helpful for you? Kindly let me know your comments / Questions.
This is a clean and Simple example. Thanks.
ReplyDelete--Greg.
Dear Pratap,
ReplyDeleteEasy to understand and implement, Nice presentation. Get going keep it up.
--Reddy
Not Able to Download the code - can you Mail it please to nilangjoshi@gmail.com
ReplyDeleteThanks!
ReplyDeleteAlso you can add some info about registration filters in global asax
ReplyDeleteThis is a clean and Simple example. Thanks.
ReplyDeleteZani.
Nice!.....
ReplyDeletesimple to understand, could you please post some example to authenticate user from database table?
ReplyDeletereally helpful. Thanks
ReplyDeleteExpert tutorial
ReplyDeleteThe complete blogs are really inconceivable and definitely everyone will share this information.
ReplyDeletewww.ushomefilter.com/
Hii.. i was excited to saw your article .defintely this blog help to me more and more .And i hope this will be useful for many people.. and i am waiting for your next post keep on updating these kinds of knowledgeable things
ReplyDeleteGiven so much information in it. its very useful .Thanks for your valuable information. dot net training in chennai velachery |
dot net training institute in velachery