The following option can be added to web.config to redirect an older assembly to the
.dll fo a newer assembly.
This works even if the older control is embedded into a third-party module.
This will also work to correct AjaxControlToolkit version ambiguity between earlier versions and asp.net 3.5
This example will take the Q3 2008 version of the Telerik.Web.UI and redirect all controls to the Q1 2009 assembly
6 lines of code to prevent many hours and frustration.
enjoy
Cliff
.dll fo a newer assembly.
This works even if the older control is embedded into a third-party module.
This will also work to correct AjaxControlToolkit version ambiguity between earlier versions and asp.net 3.5
This example will take the Q3 2008 version of the Telerik.Web.UI and redirect all controls to the Q1 2009 assembly
<runtime> |
<dependentAssembly> |
<assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4"/> |
<bindingRedirect oldVersion="2008.3.1125.20" newVersion="2009.1.311.20"/> |
</dependentAssembly> |
</runtime> |
6 lines of code to prevent many hours and frustration.
enjoy
Cliff