News

Brad Abrams, founding member of the CLR and .NET Framework teams at Microsoft, published a good example of how developers can leverage the MVC Framework with some of the new tools from Microsoft.
Sample application We will use a simple seconds-counter application as an example for the framework: it allows the user to set the time period to count and to start/stop the timer.
Take for examples if your application needs to run on both web and mobile phone, you don't have to rewrite the whole application; you just have to change the presentation layer, namely the view and ...
Take advantage of the recommended best practices and tips to build applications using ASP.Net MVC that can scale and are responsive, fast, easier to test and maintain This is another post on the ...
In real life components grow even bigger as developers have to handle many cases omitted in book examples. Problem #1: Application components mix many unrelated things in a single component class, ...
When I look at the sample code people show for ASP.NET MVC applications I see relatively simple-minded scenarios: Typically, just a Web page that displays one Entity Framework entity object (for ...
The GlobalFilters object is a great way to associate an attribute with every Action method in your ASP.NET MVC application. I use GlobalFilters to put the Authorize attribute on every method and then ...