Can we use nested update panel in Ajax?
Answer / v madhu babu
Yes, we can use nested update panel in Ajax. Update panels can be nested to have more control over the Page Refresh.
| Is This Answer Correct ? | 0 Yes | 0 No |
What are the new features of asp.net ajax 4.0?
Does load runner support ajax apps?
Tell name of all the control of ajax?
What is ajax and how does it work?
Is it true that the ajax application are much better than the classical internet applications?
Some of the google examples you cite don't use xml at all. Do I have to use xml and/or xslt in an ajax application?
Which request is better with ajax, get or post?
Which are the knowledge requirements for personal ajax functionality?
What is the name of the DLL that contains Ajax control tool kit?
What is the difference between synchronous postback and asynchronous postback? : asp.net ajax
what are difference between server-side ajax framework and client-side ajax framework?
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?