Ajax

BluJag

Perch
Asynchronous JavaScript and XML (AJAX) has recently become the craze thanks, in no small part, to Google?s usage of it in Google Suggest as well as Google Maps. In ASP.Net terms, AJAX allows server-side processing to occur without requiring postback, thus enabling clients (browsers) with rich server-side capabilities. In other words it provides a framework for asynchronously dispatching and processing requests and responses from the server. AJAX leverages a number of existing technologies, which aren't particularly new, however fondness for what these technologies have to offer (collectively, they are AJAX) has recently soared.

Go to
http://ajax.schwarz-interactive.de/vbnetsample/default.aspx
for more info.
 
I definitely think ajax is cool, but I think its a bit silly to slap a name on a technique such as the industry has with ajax..
 
for my ajax sample, check out http://www.jonyah.com for a way to log in to the control panel using ajax. error msgs are displayed without reloading the page. I also picked up ajaxscripts.com the day the phrase was coined, just haven't done anything with it yet.
 
Are there any useful scripts available that use AJAX?
Is it considered to be pretty difficult to learn and program in AJAX?
 
if you know javascript and xml then you already know how to do it. In fact, the xml is pretty loose (I usually don't use xml, but my own formats). You could actually do an entire site using ajax, but you lose the important back button feature (one reason flash sucks so much).
 
jonyah said:
if you know javascript and xml then you already know how to do it. In fact, the xml is pretty loose (I usually don't use xml, but my own formats). You could actually do an entire site using ajax, but you lose the important back button feature (one reason flash sucks so much).

i dislike that feature as well... i'll bet there's a way to store the client's "history" and make a "back button" of sorts...
 
Back
Top