views:

47

answers:

1

What is the vantage of asp.net mvc?

How can I migrate from asp.net to asp.net mvc?

+1  A: 

You have to realize that it's a completely different model to that of ASP.NET WebForms. The one doesn't replace the other.

From the ASP.NET MVC Site

  • Provides complete control over your HTML markup
  • Enables rich AJAX integration
  • Intuitive website URLs
  • Clear separation of concerns which results in web applications that are easier to maintain and extend over time.
  • Testability – including support for test-driven development.
PieterG