| Author: D.Jeya kumar(JK) 25 Jun 2009 | Member Level: Diamond | Rating:  Points: 2 |
Hi,
Usually all the data transfer will be passed through a form in simple words to understand.
The model manages the behavior and data and responds to requests for information about its state
The view just manages the display of information.
The controller interprets the mouse and keyboard inputs from the user, informing the model and/or the view to change as appropriate.
Check the below link for more information and to implement it in .net
http://msdn.microsoft.com/en-us/library/ms978748.aspx
http://www.asp.net/mvc/
Regards JK
|
| Author: ABitSmart 25 Jun 2009 | Member Level: Diamond | Rating:  Points: 2 |
DJ in MVC, the mouse and keyboard interpretation is not done by Controller it is done by View itself. You have explained an MVP pattern - Model View Presenter.
ASP.NET MVC is an MVC design pattern implementation for ASP.Net. If you know what an MVC pattern is, you will love the idea of inherent MVC support in ASP.Net.
|