Hi all,
What are the features and advantages of Asp.net MVC?
Please help with details.
Hi all,
What are the features and advantages of Asp.net MVC?
Please help with details.
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/
Here are some other threads that discuss this issue
Should I migrate to ASP.NET MVC?
ASP.NET MVC > ASP.NET WebForms, Why?
What’s your choice for your next Asp.Net project: WebForms or MVC?
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.