Which is the purpose for using the scriptmanager?
No Answer is Posted For this Question
Be the First to Post Answer
What is prerequisite for Update Panel in Ajax?
How does one call a javascript function from the ajax code?
Can we use nested update panel in Ajax?
How to control how long an ajax request may last?
How do we create a thread to do ajax polling?
What are the advantages of Ajax?
What are Ajax applications?
What is a simple example of where a ajax request would be used?
What is the difference between a destructor and a garbage collector?
What is json? : asp.net ajax
What is the difference between javascript and ajax?
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?