Scenario:
We need to include “ASP.NET AJAX Control Toolkit” in our webpart.
Resolution:
1 – Download “ASP.NET AJAX Control Toolkit” binary version from following:
http://ajaxcontroltoolkit.codeplex.com/releases/view/33804
2 – Add assembly “AjaxControlToolkit.dll” into GAC using gacutil.exe
gacutil.exe /i “AjaxControlToolkit.dll”
3 – Add following line in “<assemblies>” section of the “web.config” file of specific web application
<add assembly=”AjaxControlToolkit, Version=3.0.30930.28736, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e” />
4 – Add reference of “AjaxControlToolkit.dll” in your project for server side and for client side add following line:
<%@ Register Assembly=”AjaxControlToolkit” Namespace=”AjaxControlToolkit” TagPrefix=”ajax” %>
