C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML
ASP.NET MVC TutorialThe MVC (Model-View-Controller) is an application development pattern or design pattern which separates an application into three main components:
ModelModel: Model is a part of the application which implements the logic for the data domain of the application. It is used to retrieve and store model state in a database such as SQL Server database. It also used for business logic separation from the data in the application. ViewView: View is a component that forms the application's user interface. It is uses to create web pages for the application. An example would be an edit view of a Products table that displays text boxes, drop-down lists and check boxes based on the current state of a Product object. ControllerController: Controller is the component which handles user interaction. It works with the model and selects the view to render the web page. In an MVC application, the view only displays information whereas the controller handles and responds to the user input and requests. The following image represents the ASP.NET MVC Design Pattern: This design pattern is a lightweight framework which is integrated with various features such as master pages and membership based authentication. It is defined in the System.Web.Mvc assembly. Advantages of ASP.NET MVC FrameworkThis approach provides the following advantages.
Next TopicASP.NET MVC Project
|