AJAX and classic ASP

you could probably incorporate any sample into your script, because AJAX is a combination of client side technologies...
 
ajax isn't language specific. it's just javascript and xml. for an example, you can look at my control panel login page http://www.jonyah.com

It uses ajax to handle the log to jodohost's control panel without reloading to display errors.
 
ajax isn't language specific. it's just javascript and xml. for an example, you can look at my control panel login page http://www.jonyah.com

It uses ajax to handle the log to jodohost's control panel without reloading to display errors.

actually, ajax is not "just" javascript and XML. XML is the most common method to get data from a server side call. If you are manipulating the DOM, you can use XML if you are getting a lot of information, but a simple text string often suffices. The most common space I have seen ajax is by replacing a div tag with innerHTML.

AJAX, in my mind more accurately is enhanced javascript by which asynchonis calls are made to the server, resulting in the ability to manipulate webpages without reloading them...

just .02 worth.
 
The term AJAX is Asynchronous Javascript and XML, so as AJAX is concerned it is just XML, but the same results can be done without XML as you said. In fact the control panel I mentioned above doesn't use XML, but is more of a demonstration of what AJAX written pages can do.
 
Back
Top