Hello, I have upgraded my solution from VS2008. In our web project there are 2 references to ASP.NET MVC, the Microsoft.Web.MVC and System.Web.MVC. When I try removing the Microsoft.Web.MVC dll from the project and remove it from the web.config. After I do that I get compiler errors? I thought the System.Web.MVC has all the same functionality as the Microsoft.Web.MVC?
+1
A:
Although the functionality you require is probably in ASP.NET MVC 2.0, the namespace of the types will have changed from Microsoft.Web.MVC.whatever
to System.Web.MVC.whatever
.
I am guessing the compile errors you are getting are related to this. Try searching your code for usages of types starting with "Microsoft.Web.MVC" and changing them. Does this get your application compiling?
If not, post a few examples of the compile errors onto your question.
Rob Levine
2010-06-23 13:45:57