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

Error on upgrade

3 Answers 109 Views
ToolTip
This is a migrated thread and some comments may be shown as answers.
Michele
Top achievements
Rank 2
Michele asked on 12 May 2008, 08:54 PM

I want to upgraded from Q4 2006 SP2  to RadControls for ASP.NET AJAX I'm starting with the trial(RadControls_for_ASP.NET_AJAX_2008_1_415_trial)
 to make sure everything works prior to upgrading.
I added the Telerik.Web.UI.dll to my bin and now I'm getting the following error.

How can I correct this issue?

Compilation Error

Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.

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

Source Error:

Line 22:              
Line 23:         </div>
Line 24: <telerik:radtooltipmanager id="RadToolTipManager1" runat="server" Position="MiddleRight" Line 25: 		animation="Fade" onajaxupdate="OnAjaxUpdate" Skin="Web20" 
Line 26: 		width="450px" 

Source File: C:\Documents and Settings\Larry Stewart\My Documents\Cplanet Development Site\Community.aspx    Line: 24

3 Answers, 1 is accepted

Sort by
0
Accepted
Svetlina Anati
Telerik team
answered on 13 May 2008, 11:02 AM
Hi Michele,

It seems that you are using the .NET 3.5 version of the RadToolTipManager 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, not in the bin35 folder).


Sincerely yours,
Svetlina
the Telerik team

Instantly find answers to your questions at the new Telerik Support Center
0
Michele
Top achievements
Rank 2
answered on 13 May 2008, 05:25 PM
Thanks... That worked great and now my tooltips work great.

But adding Imports Telerik.Web.UI  - Killed all of my other R.A.D Controls on the page.

'RadMenuItem' is ambiguous, imported from the namespaces or types 'Telerik.Web.UI, Telerik.WebControls'.


Dim menuItemHome As New RadMenuItem()
 menuItemHome.Text = "Home"
 menuItemHome.Value = "Home?Id?value?main"

If I remove Imports Telerik.WebControls I get this error.
Value of type 'Telerik.Web.UI.RadMenuItem' cannot be converted to 'Telerik.WebControls.RadMenuItem'.
menuItemHome.Value = "Home?Id?value?main"
menuItemHome.PostBack = "False"
RadMenu1.Items.Add(menuItemHome)


0
Michele
Top achievements
Rank 2
answered on 13 May 2008, 06:02 PM
Fixed..
I had a semi long reply telling you what I did to fix it. But it was all lost when I tried to send the message and i required me to log back in; all was lost.
Tags
ToolTip
Asked by
Michele
Top achievements
Rank 2
Answers by
Svetlina Anati
Telerik team
Michele
Top achievements
Rank 2
Share this question
or