Home > Development > Technologies > MVC Services
MVC (Model-View-Controller) is an architectural or Security pattern that separates an application into three main logical components:-
Each of these MVC components is built to handle specific development aspects of an application. Model-View-Controller is one of the most frequently used industry-standard web development frameworks to create scalable and extensible projects.
The Model component of MVC corresponds to all the data-related logic that the user works with. The model can represent either the data that is being transferred between the View and Controller components of MVC or any other business logic-related data. For example, a Customer object will retrieve the customer information from the manipulate it, database, and update its data back to the database or use it to render data.
The View MVC component is used for all the UI logic of the application. For example, the Customer view will include all the UI components such as dropdowns, text boxes, etc. that the final user interacts with.
Controller act as an interface between Model and View components of MVC to process all the incoming requests and business logic, manipulate data using the Model component and interact with the Views to render the final output. For example, the Customer controller will handle all the inputs and interactions from the Customer View and update the database using the Customer Model. The same controller will be used to view the Customer data also.
ASP.NET language supports three major development models :
ASP.NET MVC framework is a highly testable, lightweight presentation framework that is integrated with the existing ASP.NET features, such as authentication, master pages, etc. Within Asp.NET, this framework is defined in the System, Web.Mvc assembly. The latest version of the MVC Framework is 5.0 is used. We use Visual Studio to create ASP.NET MVC applications which can be added as a template or layouts in Visual Studio.
ASP.NET MVC provides the following features :
Subscribe to our Newsletter
and stay up to date with new technologies...