What is MVC

What is MVC

Released Sunday, 17th January 2021
Good episode? Give it some love!
What is MVC

What is MVC

What is MVC

What is MVC

Sunday, 17th January 2021
Good episode? Give it some love!
Rate Episode
List

First, we need to understand what is Asp.net MVC?

MVC stands for Model-View-Controller, MVC is a design pattern that describes the shape of an application. 

The MVC pattern emphasizes the separation of concerns, where areas of functionality are defined independently.

The controller is working as a mediator and control model and view.  


Early versions of the MVC Framework were built on the ASP.NET foundations that were originally designed for Web Pages,

which led to some awkward features and workarounds. With the move to .NET Core, ASP.NET became ASP.NET Core, 

and the MVC Framework was rebuilt on an open, extensible, and cross-platform foundation.


The MVC Framework remains an important part of ASP.NET Core, but the way it is commonly used has changed with the rise of

single-page applications (SPAs). 

In a SPA, the browser makes a single HTTP request and receives an HTML document that delivers a rich client, 

typically written in a JavaScript client such as Angular or React. 



Show More