tags:

views:

50

answers:

2

Though I have gone through some articles regarding MVC and MVP, I am not able to take decision to write code with MVP or MVC pattern?

Which pattern will allow us to write loosely coupled code? Can I assume Asp.Net web forms is MVP by default?

+3  A: 

Both patterns allow you to write loosely coupled code. Out of the box ASP.NET WebForms is not MVP. You need to make it. There's even a framework which may simplify this task.

Darin Dimitrov
A: 

Neither. Both. Patterns might help, but its you who writes either tightly or loosely coupled code in the end.

Wyatt Barnett