Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add ajaxcontroltoolkit to toolbox in Visual Studio 2012

I have used the ajaxtoolkit with .NET 4 and Visual Studio 2010, and I was able to add a new tab to the toolbox and add the ajaxtoolkit controls to the toolbox. How do I do this in Visual Studio 2012?

I have added the ajaxtoolkit with NuGet, but I would like to see the controls in the toolbox, so I can drag the controls in. How is this done?

like image 921
user1186651 Avatar asked Mar 06 '13 22:03

user1186651


People also ask

How do I add AJAX Control Toolkit in Visual Studio?

Inside the Documents folder, navigate to ASP.NET AJAX Control Toolkit folder and then to the Bin folder and select the AjaxControlToolkit. dll. All the controls present in the AJAX Control Toolkit Library are now displayed in the Visual Studio Choose ToolBox Items Dialog.

Where is AjaxControlToolkit DLL located?

Start a command prompt and run dir c:\ajaxcontroltoolkit. dll /s to see if the file is somewhere on your system. If it is, then copy it to the project's bin folder. If it's not on your hard drive, go to http://ajaxcontroltoolkit.codeplex.com/releases/view/116091, download the version in question, and copy the .

How do I add AJAX Control Toolkit in Visual Studio 2013?

Go to Visual Studio --> Tool box window --> Right Click --> Add Tab.. Give this tab a name like "AJAXToolKit" . Once the tab has been created right click the tab again and go to Choose Items...

How do I reference AjaxControlToolkit?

Right Click the References in Solution Explorer and select Add Reference,Select "Browse" Tab, Select AjaxToolkit. dll from the "bin" folder from your project folder.

How to add AJAX Control Toolkit in Visual Studio?

In this post, we will learn how to add Ajax Control Toolkit in Visual Studio (step by step). 1. Click on Download button to download the latest release of AJAX Control Toolkit. Or Click on Downloads link in the menu and select the Ajax Control Toolkit release according to your need.

Where can I find Ajax Toolkit?

It's located in the packages folder created by Visual Studio 2012 after you use NuGet Package Manager to download it. Create a tab in Visual Studio (you can name it Ajax Toolkit).

How to download and install AJAX Control Toolkit in WordPress?

1. Click on Download button to download the latest release of AJAX Control Toolkit. Or Click on Downloads link in the menu and select the Ajax Control Toolkit release according to your need. On clicking, AJAX Control Toolkit starts downloading.

How to install AJAX Control Toolkit using NuGet packages?

Method1: Using Nuget Packages. Step1: Create a new project or you can use your existing project. Using Top menu in visual studio click on website=>Manage Nuget Packages. Step2: You will see a popup window like displayed below. Search for Ajax Control Toolkit from the search box located at to right hand side of the popup window.


1 Answers

It's located in the packages folder created by Visual Studio 2012 after you use NuGet Package Manager to download it.

Create a tab in Visual Studio (you can name it Ajax Toolkit).

Enter image description here

Right click on it and select: Choose Items..

Enter image description here

Click Browse and navigate to the packages folder that Visual Studio 2012 creates with your source. Something like this: ..\packages\AjaxControlToolkit.7.0123\lib\40\AjaxControlToolkit.dll

Enter image description here

enter image description here

Select AjaxControlToolKit.

like image 53
SkeetJon Avatar answered Oct 26 '22 18:10

SkeetJon