What is Difference between Callbacks and Postback in ASP.NET?
Answer Posted / dhiraj kumar
Callbacks :- It is a way to get data related to particular
control which is implementing call back. Callback is
nothing but asynchronous postback in which only data
related to the control is came instead of whole page data.
Postback :- It is property of server controls in which
whole page get refreshed. It sends data to server and then
server process the data and after completion of life cycle
process, result is rendered on browser.
Postback is heavyweight methods or execution is slow but
callback is lightweight methods or execution is fast
because here whole page is not getting refreshed or
rendered.
Is This Answer Correct ? | 18 Yes | 5 No |
Post New Answer View All Answers
What is session management in web application?
Give an example of what might be best suited to place in the application_start and session_start subroutines?
Why the javascript validation not run on the asp.net button but run successfully on the html button?
Explain the purpose of storyboard.targetproperty.
What is the recommended approach for asp.net mvc to globally intercept exceptions? What other functionality can be implemented with the approach? : Asp.Net MVC
What are the different types of validation controls in asp.net?
What is ipostback?
What are strong names?
What is session in asp.net?
How do you deploy your asp.net application?
What are different types of api?
What is form method?
Where session id is stored?
Define application state variable and session state variable?
How many types of state management are there in asp net?