Ajax (Asynchronous JavaScript and XML) is a method of building interactive applications for the Web that process user requests immediately. Ajax combines several programming tools including JavaScript, dynamic HTML (DHTML), Extensible Markup Language (XML), cascading style sheets (CSS), the Document Object Model (DOM), and the Microsoft object, XMLHttpRequest. Ajax allows content on Web pages to update immediately when a user performs an action, unlike an HTTP request, during which users must wait for a whole new page to load. For example, a weather forecasting site could display local conditions on one side of the page without delay after a user types in a zip code.
Ajax is asynchronous, in that extra data is requested from the server and loaded in the background without interfering with the display and behavior of the existing page. JavaScript is the scripting language in which Ajax function calls are usually made.Data is retrieved using the XMLHttpRequest object that is available to scripting languages run in modern browsers, or, alternatively, through the use of Remote Scripting in browsers that do not support XMLHttpRequest. In any case, it is not required that the asynchronous content be formatted in XML.
|
| Author: Sonu Fernandes 23 May 2008 | Member Level: Gold Points : 2 |
What is Ajax? Answer:- Asynchronous JavaScript and XML - Ajax is a combination of client side technologies that sets up asynchronous communication between the user interface and the we server so that partial page rendering occur instead of complete page postbacks.
|
| Author: Meekredd 27 May 2008 | Member Level: Gold Points : 2 |
how we r using in ASP.Net
|