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 scope of an application variable in asp.net?
What is validation in asp.net?
Which is the best institute to learn Microsoft Technologies and the faculty if you Know?
Define web.config in .net?
Where is session data stored in asp net?
What is the used of "ispostback" property?
Why session management is required?
What is synchronous and Asynchronous post back ?
What is a viewstate?
How to find last error which occurred?
What is viewstate? What does the "enableviewstate” property do? Whay would I want it on or off?
What are web server controls in asp.net?
What is ispostback method in asp.net?
Which method has beenintroduced in asp.net 4.0 to redirect a page permanently?
Explain About WebService