Step by Step Installation Guide - DevExpress/AjaxControlToolkit GitHub Wiki

Visual Studio Extension

Note: TagPrefix is autogenerated field and can be changed according to your needs.

NuGet package

Note: NuGet packages do not provide Toolbox integration

  • Create new ASP.NET Web Forms project in Visual Studio (as described above)

  • Open "Manage NuGet packages..." dialog:

images/Screenshot_ManageNuGetPackages.jpg

  • As the dialog window appears select "Online" on the left and type in "Ajax Control" to find the AJAX Control Toolkit package:

images/Screenshot_SearchForNuGet.jpg

  • Click "Install". After the package is installed an assembly reference will be added to the project automatically:

images/Screenshot_AssemblyReference.jpg

  • Open an .aspx page and register assembly for this page:

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

images/Screenshot_RegisterAssembly.jpg

Note: TagPrefix can be changed according to your needs.