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

Version 5.2.3 and .NET 3.5

1 Answer 100 Views
WebParts for SharePoint
This is a migrated thread and some comments may be shown as answers.
Brian Cook
Top achievements
Rank 1
Brian Cook asked on 05 Nov 2008, 09:54 AM

Hi,

I just downloaded RadEditorMOSS_5_2_3_Dev.zip and noticed that that Telerik.Web.UI.dll (2008.2.1001.20) is not targeted towards .NET 3.5. i.e. it still references version 1.0.61025 of System.Web.Extensions.

Does the MOSS RadEditor work with .NET 3.5? If so, is there an updated wsp file?

I am using other Telerik ASP.NET AJAX controls and the Telerik.Web.UI.dll (2008.2.1001.35) I have for these references version 3.5 of System.Web.Extensions.

Thanks.

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 07 Nov 2008, 06:53 AM
Hi Brian,

RadEditor for MOSS is built using the Microsoft ASP.NET Ajax Extensions 1.0 (version 1.0.61025.0). Since you are using different versions (3.5.0.0 for System.Web.Extensions and 2008.x.xxx.35 for Telerik.Web.UI) you will need to add <bindingRedirect> elements for those two assemblies in the web.config file.

<dependentAssembly>
     <assemblyIdentity name="System.Web.Extensions" publicKeyToken="31bf3856ad364e35" culture="neutral" />
     <bindingRedirect oldVersion="1.0.61025.0" newVersion="3.5.0.0" />
</dependentAssembly>
<dependentAssembly>
     <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" culture="neutral" />
     <bindingRedirect oldVersion="2008.x.xxx.20" newVersion="2008.x.xxx.35" />
</dependentAssembly>

This should allow SharePoint to get the proper references and display the editor. I hope this helps.

Best regards,
Rumen
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
WebParts for SharePoint
Asked by
Brian Cook
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or