MVC stands for Model - View - Controller and is an architectural pattern used in software engineering. Successful use of the pattern isolates business logic from user interface considerations, resulting in an application where it is easier to modify either the visual appearance of the application or the underlying business rules without affecting the other.
Model
Used to accessing, retrieving, using, and maintaining data.View
Used for displaying all the data.Controller
Used to handle things from View to Model and From Model to View. The interaction between View and Model happens in the Controller.Release History:
- ASP.NET MVC Framework ( December 10, 2007)
- ASP.NET MVC Preview 2 ( March 5, 2008 )
- ASP.NET MVC Preview 3 ( May 1, 2008 )
- ASP.NET MVC Preview 4 ( July 16, 2008 )
- ASP.NET MVC Preview 5 ( August 28, 2008 )
- ASP.NET MVC Beta ( October 16, 2008 )
- ASP.NET MVC Release (expected to be released on, January, 2009)
ASP.NET MVC Official Website
No comments:
Post a Comment