Vishal Chauhan
What is Partial Postback in ASP.NET?
By Vishal Chauhan in AJAX on Oct 09 2012
  • Shweta Lodha
    Apr, 2014 23

    http://stackoverflow.com/questions/1238651/what-is-a-partial-postback

    • 1
  • Munesh Sharma
    Apr, 2014 23

    At the heart of the partial post back construction is the XMLHttpRequest, a DOM API. It can be used inside a web browser scripting language, such as JavaScript, to send an HTTP request directly to a web server without having to reload the entire page and handling the response from the server again within the scripting language. This data, in the form of XML, can then be used to manipulate the page elements on the client side.When the button on the ASPX page has been clicked, a client side HTTP request is made using the XMLHttpRequest API. This request is handled by an HttpHandler on the web server. The HttpHandler receives the request, processes it, and sends back the response to the XMLHttp object on the ASPX page. The XMLHttp object in turn consumes the response and renders the appropriate UI changes without the browser having to do a full refresh of the page.

    • 1


Most Popular Job Functions


MOST LIKED QUESTIONS