AJAX
-
Hello sir, I'm using visual studio 2005. There is no ajax tools. How can i use AJAX tools in my programs?
With Visual Studio 2005, you have to download the ASP.NET AJAX libraries from here[^]. Then just google for
UpdatePanel
to learn how to use it. It's pretty easy.Luis Alonso Ramos Intelectix Chihuahua, Mexico My Blog!
-
Hello sir, I'm using visual studio 2005. There is no ajax tools. How can i use AJAX tools in my programs?
hi, to use ajax in visual studio 2005 you need to install ajax toolkit to your system. then you can use ajax tools in your application by adding reference of that dll to your application from GAC. praveen.
-
Hello sir, I'm using visual studio 2005. There is no ajax tools. How can i use AJAX tools in my programs?
AJAX is a framework that's built into your browser. All you need to write AJAX code is a text edition, and VS2005 is more than capable of doing it. Of course, if you don't want to learn AJAX at all, but just use an existing framework to generate code you don't understand, then download the MS library.
Christian Graus Driven to the arms of OSX by Vista.
-
Hello sir, I'm using visual studio 2005. There is no ajax tools. How can i use AJAX tools in my programs?
U have to download the Ajax tool kit and msi setup file. Download the <b>ASPAJAXExtSetup.msi</b> file from the below site to support Ajax in Asp.Net. http://www.microsoft.com/downloads/details.aspx?FamilyID=ca9d90fa-e8c9-42e3-aa19-08e2c027f5d6&displaylang=en[^] Download the Ajax control toolkit from the below site. http://www.codeplex.com/AjaxControlToolkit/Release/ProjectReleases.aspx?ReleaseId=16488[^] In the above page, at the top right corner u can see the topic Releases in a box. Click the link 20229. It redirects to another page. Select AjaxControltoolkit.zip under the topic Downloads&Files. Run the msi file. Follow these steps to add the ajax control toolkit to ur application: 1. Create a folder AJAX Control Toolkit at path C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions or the drive where you have installed the Windows on PC. 2. Then extract the files of downloaded Control Toolkit .zip inside new created folder. 3. You will get the following folders and files from the extracted items: o AjaxControlExtender o AjaxControlToolkit o Binaries o SampleWebSite o TemplateVSI o ToolkitTests o AjaxControlToolkit.sln [Visual Studio Solution file] 4. Double click on AjaxControlToolkit.sln solution file to open it in Visual Studio 2005. It will show a security warning with two project load options: o Load project for browsing o Load project normally 5. Select load project normally and click ok. 6. After loading the solution it will display AJAXControlToolkit, SampleWebSite, ToolKitTests, TemplateVSI in the solution explorer. Right click on TemplateVSI and click build. After successful compile and build go to the path X: or C:\Program Files\Microsoft ASP.NET\ASP.NET 2.0 AJAX Extensions\AJAX Control Toolkit\TemplateVSI\bin At this path you will get the fresh build of AjaxControlExtender.vsi 7. Next Right click on SampleWebSite in the solution explorer and Build Web Site to get the fresh copy of AjaxControlToolkit.dll.