nJoshi
nJoshi

Reputation: 376

Error while using AjaxToolkit in visual studio 2005

Now I get the below error while building and running a website that uses the calender control provided in AJAX-Toolkit from Microsoft.

Microsoft JScript runtime error: ASP.NET Ajax client-side framework failed to load.

I created the website in VS 2005, with .NET2.0.

<asp:ToolkitScriptManager ID="ToolkitScriptManager1" runat="server">
</asp:ToolkitScriptManager>

<asp:CalendarExtender ID="CalendarExtender1" runat="server" TargetControlID="TextBox1">
</asp:CalendarExtender>

<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

Now I also tried using the older versions of the ajax toolkitv1.0.61025. But it requires to have System.Web.Extentions ddl v 1.0.61025, where as my server has v3.5. I have even tried replacing the dll with the old one(I might be wrong in doing this) it said the loaded Ajaxtoolkit does not have any contols.

So I'm kinda stuck here. any Ideas?

Upvotes: 0

Views: 946

Answers (1)

Mikhail
Mikhail

Reputation: 9300

Try to download and install the ASP.NET 2.0 AJAX Extensions for the Visual Studio 2005:

Download details: ASP.NET AJAX 1.0

Upvotes: 2

Related Questions