Favourite AJAX library for classic ASP? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-02T06:20:46Z http://stackoverflow.com/feeds/question/248688 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp 1 Favourite AJAX library for classic ASP? Gaspard Leon 2008-10-29T22:43:24Z 2008-10-30T17:15:29Z <p>Just wondering if there are any good server-side libraries for AJAX (prefer JSON rather then XML but anything is good) for classic ASP (VBScript)...</p> <p>Rather not reinvent the wheel if it's already working and debugged.</p> <p>Cheers, Gaspard</p> <p>EDIT: Server-side ASP VBScript... I have already seen many javascript client side libraries.</p> http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp/248694#248694 2 Answer by mnour for Favourite AJAX library for classic ASP? mnour 2008-10-29T22:45:38Z 2008-10-29T22:45:38Z <p>Try <a href="http://jquery.com/" rel="nofollow">jQuery</a>. It's amazing!</p> http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp/249585#249585 1 Answer by Michal for Favourite AJAX library for classic ASP? Michal 2008-10-30T08:37:38Z 2008-10-30T08:37:38Z <p>I am using <a href="http://www.webdevbros.net/ajaxed/" rel="nofollow">ajaxed</a> which seems to be one of the few still maintained ajax libraries for classic asp out there. Its working very well for me. It's using prototypejs as its js lib. JSON is fully supported. </p> http://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp/250987#250987 0 Answer by Diodeus for Favourite AJAX library for classic ASP? Diodeus 2008-10-30T17:15:29Z 2008-10-30T17:15:29Z <p>You don't really need a server-side library. Accepting POSTs and GETs from AJAX is the same as accepting them the "old fashioned" way. What is key here are good design patterns.</p> <p>I commonly use a single function to dispatch my simple Ajax calls in Javascript (I use <a href="http://prototypejs.org" rel="nofollow">Prototype</a>):</p> <pre><code>function fetch(elelment,cmd,id) { //general purpose AJAX function $(elelment).innerHTML='Loading...&lt;br /&gt;&lt;img src="/images/spinner.gif"&gt;' now = new Date() url = 'http://..../Ajax.asp?CMD='+cmd+'&amp;ID='+pid+'&amp;now='+now new Ajax.Updater(elelment, url, { method: 'get' }); } </code></pre> <p>Then on the server side I typically use a select case, break it down by command, fetch the record by the passed ID, and spit out an HTML fragment. I usually build a function to spit out any JSON I need separately.</p>