AJAX Technology
Ajax incorporates:
standards-based presentation using XHTML and CSS;
dynamic display and interaction using the Document Object Model;
data interchange and manipulation using XML and XSLT;
asynchronous data retrieval using XMLHttpRequest;
and JavaScript binding everything together.
XMLHttpRequest in Synchronous mode which could have a negative effect specially on high load or slow website link, because the JavaScript engine is blocked until the request completes. That's why today we use
Asynchronous I/O solves this problem. When you make an asynchronous request it immediately returns - before it has finished. Sometime later when your request completes (it could be milliseconds or hours), Your program can then check on the state of the request to see if it completed successfully or if there was an error.
This entry was posted on 5:47 AM
You can follow any responses to this entry through
the RSS 2.0 feed.
You can leave a response,
or trackback from your own site.
0 comments:
Post a Comment