0

Possible Duplicate:
What are MVP and MVC and what is the difference?

I know MVC (Model-View-Controller). Can somebody precisely reason how MVP is different from MVC? Also Where is MVP desirable than MVC?

Community
  • 1
  • 1
WinW
  • 569
  • 2
  • 7
  • 20
  • 5
    Hover the tags "MVC" and then "MVP". – cnicutar Jun 08 '11 at 10:56
  • 1
    [Many](http://stackoverflow.com/questions/4733700/what-is-the-difference-between-controller-in-mvc-pattern-and-presenter-in-mvp-pat), [many](http://stackoverflow.com/questions/3219056/what-is-the-difference-between-mvp-and-mvc), [many](http://stackoverflow.com/questions/860470/mvp-vs-mvc) dupes for this. – razlebe Jun 08 '11 at 11:11
  • [This one](http://stackoverflow.com/questions/2056/what-are-mvp-and-mvc-and-what-is-the-difference) appears to be the most comprehensive dupe. – razlebe Jun 08 '11 at 11:12
  • @cnicutar @razlebe Thanks for pointing out, I understand what SO expects. Cheers – WinW Jun 09 '11 at 05:29

1 Answers1

2

In MVP the view is not allowed to "think". The presenter contains all the logic.

look at this: http://code.google.com/webtoolkit/articles/mvp-architecture.html#presenter

Ricky Bobby
  • 7,282
  • 7
  • 40
  • 59