What are the security issues with ajax?
No Answer is Posted For this Question
Be the First to Post Answer
How we can send more values through the response text?
What are the requirements to run asp.net ajax applications on a server?
What is ajaxcontrol toolkit?
What's the diff b/w destructor and garbage collector?
Why do we use ajax?
Is ajax a framework?
What are the types of send() method used for xmlhttprequest?
Are ajax applications easier to develop than traditional web applications?
What are the extender controls?
Describe the process and benefits of using the always visible control extender?
How do we get the xmlhttprequest object in 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?