This is a migrated thread and some comments may be shown as answers.

Web.config settings required for Telerik Version 2012.3.1308.35

1 Answer 164 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Ghouse
Top achievements
Rank 1
Ghouse asked on 07 Mar 2013, 09:56 AM
I upgraded to new Telerik version 2012.3.1308.35 from 2010.3.1109.35. All applications are on Sharepoint 2010 and everthing works fine with old telerik But with the new Telerik am getting so many errors.

Old Telerik Settings 1.  GAC:
Telerik.Web.Design
Telerik.Web.UI
2.  Web.config:
<SafeControl Assembly="Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" Namespace="Telerik.Web.UI" TypeName="*" Safe="True" SafeAgainstScript="True" /><httpHandlers><add path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource, Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" verb="*" validate="false" /><add path="Telerik.Web.UI.DialogHandler.axd" verb="*" type="Telerik.Web.UI.DialogHandler, Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4" validate="false" /></httpHandlers>3.  In application user controls:<%@ Register Assembly="Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"Namespace="Telerik.Charting" TagPrefix="telerik" %><%@ Register Assembly="Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"Namespace="Telerik.Web.UI" TagPrefix="telerik" %>Web.config settings modified for new Telerik1.    Added Telerik.Web.UI.Skins in GAC2.    Added SafeControl for Skins in Web.config3.    Registered Skins assembly in User Control4.    HttpHandlers are same as for old Telerik.Could you please let me the web.config settings required for Telerik Version 2012.3.1308.35Thanks,

 

1 Answer, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 11 Mar 2013, 05:55 PM
Hello Ghouse,

You should follow these steps when upgrading the version of RadControls for ASP.NET AJAX in your project:

1. Run the installer of Telerik AJAX controls for SharePoint for the version you want to upgrade to (which you have already done).
2. Use the version number of the new release in every reference to the assemblies that includes a fully qualified name in web.config and in the user controls. For example:
Telerik.Web.UI, Version=2010.3.1109.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"
should be replaced with
Telerik.Web.UI, Version=2012.3.1308.35, Culture=neutral, PublicKeyToken=121fae78165ba3d4"

3. If there are references to an old version of Telerik.Web.UI, for example 2010.3.1109.35, you need the following dependent assembly element in order for all the references to be redirected to the new version of the assembly:
<dependentAssembly>
        <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
        <bindingRedirect oldVersion="1.0.0.0-2012.3.1308.35" newVersion="2012.3.1308.35" />
</dependentAssembly>

Kind regards,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
General Discussions
Asked by
Ghouse
Top achievements
Rank 1
Answers by
Slav
Telerik team
Share this question
or