Showing posts with label ASP.NET MVC. Show all posts
Showing posts with label ASP.NET MVC. Show all posts

Friday, 4 October 2013

ASP.NET MVC Action Filters

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...

Routing Basics in ASP.NET MVC

When getting started with ASP.NET MVC and/or the ASP.NET Web API, it can be overwhelming trying to figure out how it all works. These frameworks offer powerful features, and abstract away a good deal of pain associated with handling, routing,...