|
Innter.Net© supports AJAX.
AJAX is an acronym for Asynchronous Javascript and XML. It describes the concept of transmitting data between server and browser without the need to reload the HTML page with every HTTP protocol request. The actual novelty of AJAX is the fact that only certain parts of a HTML page are reloaded when needed.
Example AJAX use: Imagine a web-application that displays pictures (picture gallery). Traditionally, when the visitor wants to view a new picture (or maybe a number of pictures) the entire page would need to be reloaded. The newly loaded page would then contain the new picture(s). Using AJAX, only the section of the page that has changed is refreshed. In our example this would be the new picture(s). This is not only beneficial in reducing the load time for your website visitor, but also in reducing the data transfer volume. |