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

[Solved] Can't use RadEditor

2 Answers 223 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Michele
Top achievements
Rank 2
Michele asked on 22 Apr 2008, 07:28 PM
Anyone know how to fix this?

Compiler Error Message: BC32206: Indirect reference is being made to assembly System.Web.Extensions version 3.5.0.0, which contains 'Telerik.Web.UI.RadEditor'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0. To use 'Telerik.Web.UI.RadEditor', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher.

2 Answers, 1 is accepted

Sort by
0
Lini
Telerik team
answered on 24 Apr 2008, 03:36 PM
Hi,

It seems that you are using the .NET 3.5 version of the RadEditor for ASP.NET AJAX control, but your site does not reference the .NET 3.5 version of the ASP.NET AJAX extensions. Try opening the Property Pages for your web site in Visual Studio 2008 and change the Target Framework property from the Build panel to .NET Framework 3.5.

If you are using Visual Studio 2005 or you need to use the .NET Framework 2.0 for the site, please replace the Telerik assemblies in your project with the .NET 2.0 versions (located in the bin folder of the installation).

All the best,
Lini
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Accepted
ChrisS
Top achievements
Rank 1
answered on 24 Apr 2008, 07:23 PM
Hi,

I also had this problem.  In my case I had to change the references from:

<add assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>  
 

to

<add assembly="System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35"/></assemblies></compilation

within web.config (and in my case there were lots of references).

Let me know if this helps.
Tags
Editor
Asked by
Michele
Top achievements
Rank 2
Answers by
Lini
Telerik team
ChrisS
Top achievements
Rank 1
Share this question
or