MVC is a framework that divides a project implementation into three ways.
Article from
http://www.codeforasp.net/download-and-install-mvc-framework.html
M for “Model”: It represents the data of the Database functionalities
Example: Create Sales, Get Sales, Edit Sales, Delete Sales
V for “View”: it handles flow of the application user interface of the pages with
Textbox, Checkbox, buttons…
Example: Edit.aspx page, Create.aspx Page
Note: view displays only information of user interface.
C for “Controller: it takes care of presentation of the end user interaction. It will interact with model and view and respond to user input requirement.
MVC is a clean separation between the data model and the user interface in such a way that changes to the user interface don’t affect data handling.
Installation of the MVC 1.0 Framework
System Requirements
- Supported Operating Systems: Windows Server 2003; Windows Server 2008; Windows Vista; Windows XP
.NET 3.5 SP1. Visual Studio 2008, Visual Studio 2008 SP1 or Visual Web Developer 2008 SP1 is required.
To Download MVC 1.0 Framework Please visit below link of microsoft.com
When you open this link observe three files to download they are
ASP.NET MVC – 1.0 Release Notes.doc: download contain about Tutorial links, Installation notes, Server Installation.
****AspNetMvc1.0.Ms-PL.source.zip: download contains MVC 1.0 Framework Setup file and license (Please read the license before installation of MVC Framework)
AspNetMVC1.msi
a) After download AspNetMvc1.0.Ms-PL.source.zip. Extracting this Zip file you will see AspNetMVC1.msi run this file it will install MVC Framework and MVC Templates
b) After Completion of the installation open your new application in Visual Studio
2008 .You can observer the templates of MVC.
Programs -> Vs 2008 ->File -> Project -> Asp.net MVC Web Application
Posted by lokeshbasana