Wednesday, 25 June 2014

MVC Basics Part 1



In this post we will be getting basic idea about MVC. Whenever I head MVC the very first question that came to my mind is what actually MVC is? and from here my search started but now I have gained enough knowledge about MVC that I will directly start with it without taking much time of yours.

What actually MVC is
ASP.NET MVC is a design pattern or a software architecture that separates domain/application/business logic from the rest of the user interface. It does this by separating the application into three parts: the model, the view, and the controller. To understand the distinctive aspects and design goals of ASP.NET MVC, it’s worth considering the history of Web development so far—brief though it may be.