I keep on hearing this words 'callback' and 'postback' tossed around.
What is the difference between two ?
Is postback very specific to the ASP.NET pages ?
|
I keep on hearing this words 'callback' and 'postback' tossed around. Is postback very specific to the ASP.NET pages ? |
||||
|
|
|
A Postback occurs when the data (the whole page) on the page is posted from the client to the server..ie the data is posted-back to the server, and thus the page is refreshed (redrawn)...think of it as 'sending the server the whole page (asp.net) full of data'. On the other hand, a callback is also a special kind of postback, but it is just a quick round-trip to the server to get a small set of data (normally), and thus the page is not refreshed, unlike with the postback...think of it as 'calling the server, and receiving some data back' With Asp.Net, the ViewState is not refreshed when a callback is invoked, unlike with a postback. The reason that the whole page is posted with ASP.Net is because ASP.Net encloses the whole page in a If you are using FireBug (for Firefox), you can actually see callbacks being invoked to the server in the The below image illustrates the Page Life Cycles of both a postback and a callback in a ASP.NET based Website:
|
|||||||||||||||||||
|
|
A postback occurs when a request is sent from the client to the server for the same page as the one the user is currently viewing. When a postback occurs, the entire page is refreshed and you can see the typical progression on the progress bar at the bottom of the browser. A callback, generally used with AJAX, occurs when a request is sent from the client to the server for which the page is not refreshed, only a part of it is updated without any flickering occuring on the browser |
|||
|
|
|
I agree with Dreas' answer, but I'd like to add a couple of points. Postback is a term that gets introduced very recently by ASP .NET programming as Dreas explained, whereas callback is more generic and has been used way before web development exists. In fact I first heard about callback back in the days when I started programming in C (maybe the term existed before that, I don't know) and it simply means a pointer to function and this pointer to a function (name this A) gets passed to another function (name this B) which will later invoke A. Callback is also recently used by Yahoo UI Connection Manager and other Ajax frameworks but I believe the term had its first use back in the old C days. |
|||
|
|
|
A postback is also a round trip basically when a postback is executed at that time it calls the special method which is known as round trip..Postback is on the server side where as round trip is on the client sid. |
|||
|
|
|
A postback occurs when a request is sent to a server no need give details about security for each request. When u make a request for the other page callback is used by the server |
||||
|
|