Favourite AJAX library for classic ASP? - Stack Overflow most recent 30 from stackoverflow.com2009-12-02T06:20:46Zhttp://stackoverflow.com/feeds/question/248688http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/248688/favourite-ajax-library-for-classic-asp1Favourite AJAX library for classic ASP?Gaspard Leon2008-10-29T22:43:24Z2008-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#2486942Answer by mnour for Favourite AJAX library for classic ASP?mnour2008-10-29T22:45:38Z2008-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#2495851Answer by Michal for Favourite AJAX library for classic ASP?Michal2008-10-30T08:37:38Z2008-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#2509870Answer by Diodeus for Favourite AJAX library for classic ASP?Diodeus2008-10-30T17:15:29Z2008-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...<br /><img src="/images/spinner.gif">'
now = new Date()
url = 'http://..../Ajax.asp?CMD='+cmd+'&ID='+pid+'&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>