我将使用 VS2012 开发 ASP.NET MVC 4。我听说 Telerik 发布了一些 Telerik MVC 4 的免费版本。我到处搜索,但我找不到。有人有经验吗?
问问题
586 次
1 回答
0
没有适用于 ASP.NET MVC 4 的 Telerik Extensions 版本。但是,您可以毫无问题地使用 ASP.NET MVC 3 版本。您需要将以下绑定重定向添加到您的 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>
于 2013-03-20T09:41:20.413 回答