Model View Controller with .Net

  • Thread starter Thread starter Martin Widmer
  • Start date Start date
M

Martin Widmer

Hi Guys

We are trying to develop a brand new version of a more than 10 yrs old
16-bit application by state of the art architecture. Due to many views on
different business objects we decided to use the MVC pattern do decouple the
logic from the views. Since we do it the first time there are many issues
coming up on which there is little or no information in the internet
available. Has anyone done such a project before?

Martin
 
Forget MVC in .net. It's now called "Databinding"

MVP is a better pattern for conceptual purposes.

Having done many of these in the past I recommend a good data model
later with no concerns for display knowledge.

A good presentation layer that conditions the data by providing
_exactly_ the correct representation for the UI and a UI that databinds
to the presention layer.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Ramuseco Limited .NET consulting
http://www.ramuseco.com

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top