What is Difference between Callbacks and Postback in ASP.NET?
Answer Posted / chandra sekhar dola
The difference between a callback and postback is that, as
with a postback, a callback does not refresh the currently
viewed page (i.e. does not redraw the page). You can think
of it as a quick trip back to get some data etc. For
example if there were two drop down boxes, the second
dependant on the value of the first, when a user selects a
value of a the first, rather then posting the whole page,
doing some server side calculations and returning a new
whole page to the client, a callback can enable you to only
go fetch the required data. Obviously from this, View State
is not updated with a callback (it's the same instance of
the page just updated!!!).
| Is This Answer Correct ? | 40 Yes | 5 No |
Post New Answer View All Answers
What is difference between singleton and single call?
What are the session variables?
What threading model used in asp and asp.net?
What is server infrastructure?
Will the asp.net validators run in server side or client side?
What is the page life cycle in asp.net?
How to implement form based authentication in asp.net application?
Differentiate between namespace and assembly.
Where do we store our connection string in asp.net application?
What is the life cycle of an asp.net page?
Which method is used to perform all validation at the page level?
By default, Web API sends HTTP response with which of the following status code for all uncaught exception?
How to sign out from forms authentication?
How will you maintain versioning in asp.net 2.0?
Where is the view state data stored in asp net?