Post has been published on Varinder Sandhu 's Blog
Post has been published on http://www.varindersandhu.in/2011/05/03/mvc-model%e2%80%93view%e2%80%93controller-2/
MVC- Model–View–Controller
<!-- google_ad_client = "pub-2404605494811633"; google_alternate_color = "FFFFFF"; google_ad_width = 468; google_ad_height = 60; google_ad_format = "468x60_as"; google_ad_type = "text_image"; google_ad_channel =""; google_color_border = "FFFFFF"; google_color_link = "0000FF"; google_color_bg = "FFFFFF"; google_color_text = "000000"; google_color_url = "008000"; google_ui_features = "rc:6"; //-->
I have attended the training session on MVC with Logiciel at Ludhiana on 3rd May 2011. It was a good session.
Session Detail:
Introduction and Overview
Demo Project (Lab)
Question/Answer
There is lot of detailed stuff available over the internet. So just sharing you very brief notes…
MVC Pre-requisites
Visual Web Developer 2008 Express Edition SP1 http://www.microsoft.com/express/download/
SQL Server 2008 Express Edition http://www.microsoft.com/express/sql/download/
Micorosft.NET Framework 3.5 SP1 http://msdn.microsoft.com/en-us/netframework/
Microsoft ASP.NET MVC http://www.asp.net/mvc/
MVC can be defined as an architectural pattern that is used while developing interactive application on the web.
     Model: The model object knows about all the data that need to be displayed. It only represents the data of an application.
View: The view represents the presentation of the application. The view object refers to the model. It uses the query methods of the model to obtain the contents and renders it.
Controller: It acts as interacting glue between models and views. It accepts input from the user and makes request from the model for the data to produce a new view.
Related Articles :
http://www.mefeedia.com/watch/30352574
http://en.wikipedia.org/wiki/Model%E2%80%93view%E2%80%93controller
http://www.roseindia.net/struts/mvc-architecture.shtml















