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

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

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -