Possible Duplicate:
Can I use ASP.NET MVC together with regular ASP.NET Web forms
Let’s say I need to build a shopping cart. Would I be able to get the same user experience with ASP.NET MVC or would I need to “pick the right tool for the job” – use Webforms and MVC where applicable instead of just focusing on either one.
MVC is just a different way of using the same tool (in my experience anyways). Actually… looking back over previous Web Forms projects… I wish I could convert them all to MVC.. the separation is so much better/cleaner.
I agree with @egrunin tho.. same user experience is accomplished through either method of development.. it’s just a different way of thinking about things (IE: MVC is stateless).
As per your edited question