Can anyone provide a basic sample / link for the MVP Framework.
The need for site design => is much more sites like administrator.
SQL Server as a database.
Representative Model Representation on MSDN:
http://msdn.microsoft.com/en-us/magazine/cc188690.aspx
MVP Framework in CodePlex:
http://www.codeplex.com/aspnetmvp
Check out the structure of MVP web forms. Could be better than rolling out your own
http://webformsmvp.com/
You can check out the WebClient Software Factory from the Microsoft Patterns and Practices team. This is also here on Codeplex . It uses the MVP pattern and adds several useful Visual Studio options when installing it.
I have successfully used the following open source project to implement the MVP pattern in ASP.NET + WinForms:
Take a look at my blog post that shows a complete example of an ASP.NET web application:
View Presenter model with lock in ASP.NET
CodeProject has a good example of how you can start with the .NET MVP platform: http://www.codeproject.com/KB/architecture/DotNetMVPFramework_Part1.aspx
See also ASP.Net MVC .
Do not forget the Microsoft Prism project:
http://msdn.microsoft.com/en-us/magazine/cc785479.aspx
Here's a quick start:
http://www.codeproject.com/Articles/35775/Model-View-Presenter-and-Model-View-ViewModel-in-P.aspx?msg=3013396
Martin Fowler has written quite a lot on the different templates used for enterprise-level software.
His website is here . It provides several MVP options, so you can choose the one that best suits your situation.
I found the Polymorphic Podcast: Bootcamp: Model View * Patterns Design Patterns is very useful. It contains some short videos.
Take a look at this simple example demonstrating the basics of MVP:
http://www.avantprime.com/articles/view-article/2/model-view-presenter-(mvp)-design-pattern-in-asp.net