What is Synchronous and Asynchronous AJAX request.
Answers were Sorted based on User's Feedback
Answer / srinivas
synchronous where the script stops and waits for the server
to send back a reply before continuing and asynchronous
where the script allows the page to continue to be processed
and will handle the reply if and when it arrives.
Is This Answer Correct ? | 67 Yes | 4 No |
Answer / ahmed
asynchronous where the script allows the page to continue to
be processed
and will handle the reply if and when it arrives.
synchronous where the script stops and waits for the server
to send back a reply before continuing and
Is This Answer Correct ? | 16 Yes | 3 No |
Are there any frameworks available to help speedup development with ajax?
What is the difference between RegisterClientScriptBlock, RegisterClientScriptInclude and RegisterClientScriptResource?
1 Answers Clavax Technologies,
Where should I start?
What are Ajax applications?
How can we cancel the XMLHttpRequest in AJAX?
Briefly describe asp.net ajax framework? : asp.net ajax
How do we manage concurrent request?
Why do you use ajax?
When not to use JSON?
Does this mean adaptive path is anti-flash?
How can we assign an object in Java Script?? For Example:- ----------- If i create an object "obj1" var obj1 = Object(); obj1.name = "hari"; and if i want to assign it to two objects "obj2" and "obj3" with different names... obj1.name = "gopi" obj2 = new Object(obj1); obj1.name = "raghu" obj3 = new Object(obj1) Now ob2.name become to "raghu" from "gopi". WHY? how to solve the above problem?
What are the common problems (errors) you get while implementing AJAX?