top button
Flag Notify
Site Registration

Difference between Synchronous and Asynchronous Postback?

+2 votes
303 views
Difference between Synchronous and Asynchronous Postback?
posted Jul 3, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes
  • Asynchronous postback renders only the required part of the page; whereas,
    synchronous postback renders the entire page for any postback.

  • Asynchronous postback executes only one postback at a time, that is, if you have two buttons doing asynchronous postback, the actions will be performed one by one; whereas,
    synchronous postback executes all the actions at once.

  • Asynchronous postback only modifies the update panel that raises the postback; whereas, synchronous postback modifies the entire page.

answer Jul 8, 2015 by Manikandan J
Similar Questions
+4 votes

I am getting confused between trap and interrupt. As trap is software driven and interrupt is hardware originated. Every instruction of a program get executed in CPU then how trap and interrupt differs ? A detailed example can help out me. Thanks in advance.

...