In order to register assembly for AjaxControlToolkit, we need to follow few basic steps.1. First of all, download and install AjaxControlToolkit.
Please follow the link to download @ http://www.asp.net/ajaxlibrary/Download.ashx
For Installation, @ http://www.asp.net/ajaxlibrary/act.ashx2. Make the following updates in web.config file.i) Under assemblies tag, add following AjaxControlToolkit assembly
<add assembly=”AjaxControlToolkit, Version=3.5.60919.0, Culture=neutral,
PublicKeyToken=28f01b0e84b6d53e”/>
ii) Under controls tag, add following
<add tagPrefix=”aspext” namespace=”AjaxControlToolkit” assembly=”AjaxControlToolkit,
Version=3.5.60919.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e”/>Note: Please make sure to change the AjaxControlToolkit version in above entries.3. Now simply place the toolkit controls on your pages in much the same way we normally place
other web controls.
<aspext:DropDownExtender ID=”popupdropdown” runat=”server”
DropDownControlID=”pnlGrid” TargetControlID=”txtSuggestedAppointment”>
</aspext:DropDownExtender>In this simple tutorial, I register AjaxControlToolkit to an asp.net application but hopefully it will work for registering any control library to your asp.net applications.
Please follow the link to download @ http://www.asp.net/ajaxlibrary/Download.ashx
For Installation, @ http://www.asp.net/ajaxlibrary/act.ashx2. Make the following updates in web.config file.i) Under assemblies tag, add following AjaxControlToolkit assembly
<add assembly=”AjaxControlToolkit, Version=3.5.60919.0, Culture=neutral,
PublicKeyToken=28f01b0e84b6d53e”/>
ii) Under controls tag, add following
<add tagPrefix=”aspext” namespace=”AjaxControlToolkit” assembly=”AjaxControlToolkit,
Version=3.5.60919.0, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e”/>Note: Please make sure to change the AjaxControlToolkit version in above entries.3. Now simply place the toolkit controls on your pages in much the same way we normally place
other web controls.
<aspext:DropDownExtender ID=”popupdropdown” runat=”server”
DropDownControlID=”pnlGrid” TargetControlID=”txtSuggestedAppointment”>
</aspext:DropDownExtender>In this simple tutorial, I register AjaxControlToolkit to an asp.net application but hopefully it will work for registering any control library to your asp.net applications.
Top 10 Interview Questions and Answers Series:
- Top 10 ASP.NET AJAX Interview Questions
- Top 10 WCF Interview Questions
- Comprehensive Series of WCF Interview Questions
- Top 10 HTML5 Interview Questions
- Top 10 ASP.NET Interview Questions
- Comprehensive Series of ASP.NET Interview Questions
- Top 10 ASP.NET MVC Interview Questions
- Top 10 ASP.NET Web API Interview Questions






