FeedBack Form

Your Name :
Your Email :
Your Location :
Your Message :
   
FeedBack

Ajax INTERVIEW QUESTION & ANSWERS

11. Name some popular ASP.NET Ajax frameworks?
 
    ASP.NET Ajax frameworks include the followin :
  • Michael Schwarz's Ajax.NET
  • Jason Diamond's Anthem
  • Magic AJAX.NET
  • Comfort ASP.NET
  • Microsoft's Atlas
  • ASP.NET Ajax from Microsoft
Your Name Your Email-ID
Your Answer
 
12. What are the types of postback?
 
    There are two types of postbacks are :
  • Synchronous Postback
  • Asynchronous Postback
Your Name Your Email-ID
Your Answer
 
13. What is the difference between Synchronous Postback and Asynchronous Postback?
  All traditional web applications use Synchronous postback. It is also called normal postback. In synchronous postback, the entire contents of the web page are sent to the server, and in response, the server sends the required information to the client.

In an Asynchronous postback, instead of sending the entire contents of a web page to the server, only the request for a specific information is sent to the server, and in response, the server sends the required information to the client.
Your Name Your Email-ID
Your Answer
 
14. What are the constituent technologies in Ajax?
 
    The constituent technologies that make up Ajax are as follows :
  • XMLHttpRequest object
  • JavaScript
  • DHTML
  • DOM
  • XML
Your Name Your Email-ID
Your Answer
 
15. How do we do exception handling in Ajax?
  Exception handling in Ajax is done using the ErrorTemplate which forms the child tag of ScriptManager.
Your Name Your Email-ID
Your Answer