MVC - Model-View-Controller is a sort of design pattern used to develop applications in an uncoupled manner i.e. seperate the data (Model) from the User interface (View) and the business logic (Controller). I first came across this with MFC applications, it was well known design pattern when developing standalone applications now it appears to be the latest craze in ASP.NET 3.5 applications! In this post I'll try and find out why and what is the significance and benefits to us, developers. MVC (scott gu) Example Building a Simple Blog engine using MVC in ASP.NET (aspalliance.com)
Layman explanations of Software coding and configuration techniques. With example code where possible.