What is Difference between Callbacks and Postback in
ASP.NET?
Answer Posted / alb.shah
Callback : It is a way to send a request to the web page
from the client script. Postback is an expensive call with
processing overhead. In callback a client function sends a
request and a special marked method is invoked on the
server. It does the processing & returns the value which is
received by another client function to process the result.
To have client side callbacks, the page has to implement
ICallbackEventHandler & implement functions
RaiseCallBackEvent & GetCallBackResult.
PostBack: Postback is the event which sends the form data to
the server. The server processes the data & sends it back to
the browser. The page goes through its full life cycle & is
rendered on the browser. It can be triggered by using the
server controls.
Callback is also the form of Postback, but the difference
is in postback execute a complete page life cycle and whole
page redraw, in callback only specific portion (Contorl) is
executed/redraw using client side scriptiong.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What are the versions of garbage collection?
Can viewstate be accessed in another page?
Is data edited in the Repeater control?
What are the advantages of using session?
How to disable cut, copy and paste in TextBox using jQuery in asp.net?
WSDL means?
Where you store Connection string in "Web.Config" file in ASP.NET?
What are the different session state management options available in asp.net?
Explain the boxing and unboxing concept in .net?
How can we inherit a static variable?
What is view state and how it works in asp net?
What are the uses of reflection?
If there are multiple update panels on the page say upd1 and upd2. There is a button placed in upd1. How can you stop upd2 to update when button placed in upd1 is clicked?
Is redux flux?
What is the difference between an htmlinputcheckbox control and an htmlinputradiobutton control?