asp.net - MVC2 Futures conflicting with existing System.Web.Mvc -
i downloaded mvc2 futures , referenced current mvc2 project. however, if want call htmlhelper mvc2 futures need <%@ import namespace="microsoft.web.mvc" %>
so decided add on web.config:
<pages> <namespaces> <add namespace="system.web.mvc" /> <add namespace="system.web.mvc.ajax" /> <add namespace="system.web.mvc.html" /> <add namespace="system.web.routing" /> <add namespace="microsoft.web.mvc" /> <add namespace="xpedite.mvc.html" /> </namespaces> </pages>
but, caused me errors. assemblies co-exist? if yes, how?
i'm pretty sure need mvc3 futures pack:
http://aspnet.codeplex.com/releases/view/54306
the mvc2 future made work against mvc1. had same issue , upgrading next futures release solved me.
Comments
Post a Comment