Answered by:
ajax tool kit

Question
-
User1200613330 posted
hello!!
what is the best ajax tool kit? and where can I download this tool kit
thanks,
danibet
פוקרTuesday, July 7, 2009 5:11 AM
Answers
-
User1872574491 posted
Hi,
in above link click on "Ajax" there you can get ajax dll and all ajax control view.
It is totaly compatiable with .net.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, July 7, 2009 6:00 AM
All replies
-
User1872574491 posted
Hi,
in above link click on "Ajax" there you can get ajax dll and all ajax control view.
It is totaly compatiable with .net.
- Marked as answer by Anonymous Thursday, October 7, 2021 12:00 AM
Tuesday, July 7, 2009 6:00 AM -
User54259136 posted
hey Dear
U can Go miscrosoft Sites and Download Ajax Control Toolkits and Put the dll in bin Folder and u Can Easily Use of All the Features Of Ajax Control ToolKits
Wednesday, December 16, 2009 7:38 AM -
User1401539635 posted
You can download it here: http://www.asp.net/ajaxlibrary/AjaxControlToolkitSampleSite/
Regards.
Tuesday, December 17, 2013 2:21 AM -
User-223976922 posted
Just did this a few days back, so here it is:
Install the ASP.NET AJAX Control Toolkit
- Download the ZIP file AjaxControlToolkit-Framework3.5SP1-DllOnly.zip from the ASP.NET AJAX Control Toolkit Releases page of the CodePlex web site.
- Copy the contents of this zip file directly into the bin directory of your web site.
Update web.config
Put this in your web.config under the <controls> section:
<?xml version="1.0"?>
<configuration>
...
<system.web>
...
<pages>
...
<controls>
...
<add tagPrefix="ajaxtoolkit"
namespace="AjaxControlToolkit"
assembly="AjaxControlToolKit"/>
</controls>
</pages>
...
</system.web>
...
</configuration>
Setup Visual Studio:
- Right-click on the Toolbox and select "Add Tab", and add a tab called "AJAX Control Toolkit"
- Inside that tab, right-click on the Toolbox and select "Choose Items..."
- When the "Choose Toolbox Items" dialog appears, click the "Browse..." button. Navigate to your project's "bin" folder. Inside that folder, select "AjaxControlToolkit.dll" and click OK. Click OK again to close the Choose Items Dialog.
You can now use the controls in your web sites!
Wednesday, December 18, 2013 5:20 AM