Hello,
I'm using Microsoft VS 2008 and .NetFramework 3.5. I added AjaxControlToolkit.dll on my toolbox and I get error:
"Indirect reference is made to assembly System.Web.Extensions version 3.5.0.0, which contains 'AjaxControlToolkit.CalendarExtender'. This Project references a prior version of System.Web.Extensions version 1.0.61025.0 To use 'AjaxControlToolkit.CalendarExtender', you must replace the reference to System.Web.Extensions with version 3.5.0.0 or higher."
I tried to change "1.0.61025.0" to "3.5.0.0" in my Web.config file and than I had problem with using ScripManager.
Error: 'ScriptManager' is ambiguous in the namespace 'System.Web.UI'
on code:
Dim scriptManager As ScriptManager = scriptManager.GetCurrent(Me.Page)
scriptManager.SetFocus(TextBox1)
Thanks...