ASP.Net MVC Framework Part - 1
ASP.Net MVC Framework Part - 1
Now that ‘ASP.NET 3.5 Extensions Preview‘ is released, Iam planning to play a bit with the new ASP.Net MVC Framework. In the coming couple of weeks I will be looking into this new Framework and post some articles related to it. For this post I will just post some basics of MVC.
MVC - Model View Controller.
Using the MVC Framework, an application is divided into 3 components:
Model
View
Controller.
Model
Model is typically a database for most applications.
View
View is the UI.
Controller
Controller is the central component between Model and View. It is reponsible for manipulating Model, picking u the View to render.
You can download ‘ASP.NET 3.5 Extensions Preview‘ from here.
The system requirements are:
Operating Systems: Windows Server 2003; Windows Vista; Windows XP
.NET Framework 3.5
Visual Studio 2008 or Visual Web Developer 2008 Express Edition
ASP.Net MVC Framework Part - 1
Tags: .Net 3.5, ASP.Net, MVC Framework