Skip to main content

Basic Hello World Program In MVC

MVC - Model View Controller is an architectural pattern where we divide our solution into 3 layers model view and controller.

Every layer has unique functionality and the whole MVC depend on convention over configuration.
The first hit always comes to the Controller and from their, it searches for required view and model.


In ASP.NET web form application, the URLs are mapped to physical files wherein MVC URL is mapped to controllers and controller action methods.


Comments