tags:

views:

77

answers:

3

Hi all,

What are the features and advantages of Asp.net MVC?

Please help with details.

A: 

That's too big a question to be answered completely here, and you'll want to know the disadvantages as well.

Here's an article that covers it pretty well.

http://www.aspfree.com/c/a/ASP.NET/Advantages-of-the-ASPNET-MVC-Approach/

David Stratton
A: 

One of the main features of using ASP.NET MVC is proper separation of concerns so that your controller doesn't know anything about your UI [view] and therefore you can more easily write unit tests for your code logic.

Plus using MVC gives you more readable/memorable URL's.

Jack Marchetti