我打算用VS2012来开发TelerikMVC4。我听说out.Anyone发布了一些免费版本给TelerikMVC4。我到处找,但是找不到VS2012有经验吗?
发布于 2013-03-20 17:41:20
ASP.NET MVC4没有Telerik扩展的版本,但是你可以使用Telerik MVC3版本,没有任何问题。您需要将以下绑定重定向添加到您的web.config:
<configuration>
<!--... elements deleted for clarity ...-->
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-4.0.0.0" newVersion="4.0.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="1.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
https://stackoverflow.com/questions/15491633
复制相似问题