IT Developer
IT Developer

Reputation: 23

The type or namespace name 'ToolkitScriptManager' does not exist in the namespace 'AjaxControlToolkit' in ASP.NET Webforms

I'm using ASP.NET Webforms and adding AjaxControlToolkit in my master page and I'm getting this error: The type or namespace name 'ToolkitScriptManager' does not exist in the namespace 'AjaxControlToolkit' (are you missing an assembly reference?)

This is my code:

Page.Master.designer.cs:

 protected global::AjaxControlToolkit.ToolkitScriptManager ToolkitScriptManager1;

Page.Master(aspx page):

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="asp" %>

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

web.config:

<add tagPrefix="asp" namespace="AjaxControlToolkit" assembly="AjaxControlToolkit" />

I've added AjaxControlToolkit.dll as a reference in my project as well. I've tried almost all the answers for similar questions but nothing worked. What am I doing wrong?

Upvotes: 0

Views: 1750

Answers (2)

M&#225;ster
M&#225;ster

Reputation: 1001

You can download and place it in your bin folder and add a reference to the dlls. Depending on what AJAX Coontrol Tollkit's version your project is using you may look for an older one on Google.

This is the latest one:

https://www.nuget.org/packages/AjaxControlToolkit/

Upvotes: 0

Milad jalali
Milad jalali

Reputation: 163

it was removed in version 15.1. look at this page for more info, and have a look at this answer too

Upvotes: 4

Related Questions