2
Reply

What is Partial Postback in ASP.NET?

Vishal Chauhan

Vishal Chauhan

Oct 09, 2012
3.7k
0

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

    Shweta Lodha
    April 23, 2014
    0

    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.

    Munesh Sharma
    April 23, 2014
    0