What is the difference between synchronous postback and asynchronous postback? : asp.net ajax
No Answer is Posted For this Question
Be the First to Post Answer
The components in the asp.net 2.0 ajax packaging?
Is the server or the client in control?
Which are the problems that can be fixed using ajax and what is the actual meaning of ajax?
What are the common ajax frameworks?
How do I handle the back and forward buttons?
What are the new controls introduced in asp.net ajax control toolkit? : asp.net ajax
What are the security issues with ajax?
Is it true that the ajax application are much better than the classical internet applications?
When do I use a synchronous versus asynchronous request?
Does ajax have significant accessibility or browser compatibility limitations?
Does ajax have significant accessibility or browser compatibility limitations? Do ajax applications break the back button? Is ajax compatible with rest? Are there security considerations with ajax development? Can ajax applications be made to work for users who have javascript turned off?
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?