Biggest advantage to using ASP.Net MVC vs web forms -


what of advantages of using 1 on other?

the main advantages of asp.net mvc are:

  1. enables full control on rendered html.

  2. provides clean separation of concerns(soc).

  3. enables test driven development (tdd).

  4. easy integration javascript frameworks.

  5. following design of stateless nature of web.

  6. restful urls enables seo.

  7. no viewstate , postback events

the main advantage of asp.net web form are:

  1. it provides rad development

  2. easy development model developers coming winform development.


Comments

Popular posts from this blog

windows - Why does Vista not allow creation of shortcuts to "Programs" on a NonAdmin account? Not supposed to install apps from NonAdmin account? -

c++ - How do I get a multi line tooltip in MFC -

unit testing - How to mock PreferenceManager in Android? -