What is Ajax?

Ajax is a set of web development techniques using many web technologies on the client side to create asynchronous web applications
 
Ajax is not a programming language, it is a client side script that communicates to and from server/ database without need of complete page refresh..
 
Basically this is what AJAX does for your application


* Update a web page without reloading the page
* Request data from a server - after the page has loaded
* Receive data from a server - after the page has loaded
* Send data to a server - in the background
 
Ajax is a client-side script that communicates to and from a server/database without the need for a postback or a complete page refresh. The best definition I've read for Ajax is “the method of exchanging data with a server, and updating parts of a web page – without reloading the entire page.
 
Ajax is a client-side script that communicates to and from a server/database without the need for a postback or a complete page refresh.
 
Back
Top