innosia 1 Report post Posted August 29, 2008 To enable ajax in asp.net you will need- ASPAJAXExtSetup.msi (Ajax extension, search it from google and download), install this and your asp.net will have ajax namespace and can be used for ajax- ASPNETAJAXVS2008.msi (ajax web extension, search it from google and download), install this and then your VS 2008 IDE will have ajax featuresFrom File, then click New Project, and select Ajax1.0 Enabled ASP.NET. And now your website is really for Ajax Share this post Link to post Share on other sites
k_nitin_r 8 Report post Posted May 11, 2010 Hi!@innosiaYou do not really have to install anything if you want to develop an AJAX-based ASP.NET website with Visual Studio 2008 because the AJAX components are already included. When you go to File > New > New Project, AJAX ASP.NET project is listed as one of the project types that you can create without having to install any additional Visual Studio extensions or third party components.A recent trend among many ASP.NET developers is to use jQuery instead of the Microsoft AJAX libraries, in which case you do not need the AJAX extensions at all - you can create a regular ASP.NET website and add in the jQuery library as a regular Javascript file and include the script onto your ASP.NET pages and master pages. Share this post Link to post Share on other sites