delete
delete

Reputation:

What is the difference between ASP.Net MVC and ASP.Net MVC2?

I've decided to take the suggestion from Robert Harvey on this site and build an application using ASP.Net MVC.

When I went to Bing for a brief overview, I saw there was an MVC2.

What is the difference and should I care?

Upvotes: 1

Views: 5203

Answers (2)

D'Arcy Rittich
D'Arcy Rittich

Reputation: 171589

Just use MVC v2 if you have the option. It is an evolved version of MVC 1 with many useful enhancement. See ASP.NET MVC 2 Released for more info.

Upvotes: 0

Robert Harvey
Robert Harvey

Reputation: 180948

MVC2 is backwards compatible with MVC, so MVC2 is the one you will be using.

For the new features in version 2, see here:

http://weblogs.asp.net/scottgu/archive/2010/03/11/asp-net-mvc-2-released.aspx

Upvotes: 2

Related Questions