vote up 1 vote down star

Can someone provide basic sample / link for MVP Framework.

Need to design a website => is much more of Admin type site.

SQL Server as database backend.

flag

Do you mean "MVC"? – Joel Coehoorn Nov 4 at 22:00
2  
The MVP pattern is basically MVC where the view is not able to talk to the model. So the view talks to the presenter which then talks to the model. Then the model talks to the presenter that talks to the view. – Caelum Nov 4 at 22:24

7 Answers

vote up 0 vote down

Martin Fowler has written quite a bit on various patterns used for Enterprise level software.

His website is here. He gives several variants of MVP so you can pick the one that best suited for your situation.

link|flag
vote up 0 vote down

You may want to check out the WebClient Software Factory from the Microsoft Patterns & Practices team. It's also here on Codeplex. It uses the MVP pattern, and adds a couple of helpful options to Visual Studio when you install it.

link|flag
vote up 1 vote down

Check out the webforms MVP framework. Might be better than rolling out your own

http://webformsmvp.com/

link|flag
vote up 0 vote down

Also look at ASP.Net MVC.

link|flag
vote up 0 vote down

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

link|flag
vote up 3 vote down

Model View Presenter at MSDN:

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

MVP Framework at CodePlex:

http://www.codeplex.com/aspnetmvp

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.