What MVP structures exist for ASP.net?

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.

+4
source share
10 answers

Representative Model Representation on MSDN:

http://msdn.microsoft.com/en-us/magazine/cc188690.aspx

MVP Framework in CodePlex:

http://www.codeplex.com/aspnetmvp

+4
source

Check out the structure of MVP web forms. Could be better than rolling out your own

http://webformsmvp.com/

+3
source

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.

+1
source

I have successfully used the following open source project to implement the MVP pattern in ASP.NET + WinForms:

  • Castle project.

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

+1
source

CodeProject has a good example of how you can start with the .NET MVP platform: http://www.codeproject.com/KB/architecture/DotNetMVPFramework_Part1.aspx

0
source

See also ASP.Net MVC .

0
source

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.

0
source

I found the Polymorphic Podcast: Bootcamp: Model View * Patterns Design Patterns is very useful. It contains some short videos.

0
source
0
source

All Articles