Difference Between PostBack and Call Back
Difference Between PostBack and Call Back
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Rewant ChoudharyPosted Sep 10, 2012, 6:52 AM
server. It does the processing on the server and returns the result back to the client. To enable client side callbacks, ICallbackEventHandler interface needs to be used and one need to implement RaiseCallBackEvent & GetCallBackResult function.
Where Postback sends the form data to the server. The server processes the data and sends it back to the browser. The page goes through its full life cycle and is rendered on the browser.
Callback does not redraw the page where postback does.
Kunal VaishyaPosted Sep 10, 2012, 7:50 AM