-
Design Patterns are templates for building an application which ensures better scalability, reliability, reusability and performance. Design Patterns are an attempt to create a best-practices approach to solve commonly occurring problems. These are about...
-
Why Prism? Lets talk about Why Prism? Why we require an another guidance for building our UI Infrastructures? At present, if any enterprise or group of individuals wants to design a rich UI based application, they simply go with WPF or Silverlight. There...
-
Overview An action filter is an attribute that you can apply to an individual controller action or an entire controller that modifies the way in which the action is executed. The ASP.NET MVC framework includes several action filters: 1. OutputCache –...
-
Advantages of ASP.NET MVC Framework 1. Clean Separation of Concerns: Model-View-Controller – By dividing the application according to their requirement and nature. 2. Test Driven Development - Supports Unit Testing and Mock Testing 3. No Postbacks or...
-
Lets create a simple ASP.NET MVC application for better understanding the concepts of Model, View and Controller. Here we will understand how we can create, update and delete from the database table. 1. First Create a database table “Customer”. Enter...
-
MVC = Model-View-Controller ASP.NET MVC is not the replacement of ASP.NET Web forms application. ASP.NET MVC is another way to build architectural pattern based web application. To work with MVC based web application, you require System.Web.Mvc namespace...