Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


What is Difference between Callbacks and Postback in ASP.NET?

Answers were Sorted based on User's Feedback



What is Difference between Callbacks and Postback in ASP.NET?..

Answer / ziya

Callback : It is a way to send a request to the web page
from the client script. Postback is an expensive call with
processing overhead. In callback a client function sends a
request and a special marked method is invoked on the
server. It does the processing & returns the value which is
received by another client function to process the result.
To have client side callbacks, the page has to implement
ICallbackEventHandler & implement functions
RaiseCallBackEvent & GetCallBackResult.

PostBack: Postback is the event which sends the form data to
the server. The server processes the data & sends it back to
the browser. The page goes through its full life cycle & is
rendered on the browser. It can be triggered by using the
server controls.

Is This Answer Correct ?    39 Yes 2 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / 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

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / ahsan raza

A callback is a special type of postback in which the
entire page is not redrawn and also the view state remains
the same....

Is This Answer Correct ?    28 Yes 5 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / 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

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / muhammad imran

Callback is also the form of Postback, but the difference is in postback execute a complete page life cycle and whole page redraw, in callback only specific portion (Contorl) is executed/redraw using client side scriptiong.

Is This Answer Correct ?    13 Yes 5 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / mani maran

call back does not refresh the whole page...

Is This Answer Correct ?    4 Yes 0 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / imran ghani

“A postback is a request sent from a client to server from the same page, user is already working with.“

“A callback is generally a call for execution of a function after another function has completed.”

http://www.webdevelopmenthelp.net/2013/11/difference-between-postback-and-callback.html

Is This Answer Correct ?    1 Yes 1 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / guest

This is " Cliet Site Call back to server site "

which won't require page refresh to execute a server call
and its based on XMLHTTP protocol or so
PostBack is for Server Site
Rahul Tripathi.

rahultripathi@myway.com

Is This Answer Correct ?    7 Yes 14 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / kiran varma

Postback is something that happens whenever the server
gets a request for this page from the second time onwards
It need not be mandatorily a submit button, probs even a
click which requiers a server side validation is also
results in a postback.
A callback function is a function which you register/ask to
be called later, usually as a result of a particular event
happening.

Is This Answer Correct ?    5 Yes 18 No

What is Difference between Callbacks and Postback in ASP.NET?..

Answer / kilorf

The Above all commands are wrong.Donot follow These.

Is This Answer Correct ?    12 Yes 33 No

Post New Answer

More ASP.NET Interview Questions

Differentiate between namespace and assembly.

0 Answers  


How would ASP and ASP.NET applications run at the same time on the same server?

0 Answers   Satyam,


What are the two Layouts supported by a Web form in ASP.NET?

0 Answers   MCN Solutions,


How to use DevExpress controls

1 Answers  


What are the advantages and limitations of query string?

0 Answers  


How do you get records number from 5 to 15 from a dataset of 100 records?

3 Answers   Syntax Softtech,


How can we create Tree control in asp.net?

0 Answers  


How can you access the properties and controls of master pages from content pages?

0 Answers  


What is intrinsic objects in asp.net?

0 Answers  


Why do we use datasource in asp.net?

0 Answers  


Can we add code files of different languages in app_code folder?

0 Answers  


accessing a textbox that was created dynamically? for (int i = 0; i < t1; i++) { TextBox t2 = new TextBox(); t2.ID = "adf" + i; PlaceHolder1.Controls.Add(t2); } accessing data entered in the above created controls.

1 Answers  


Categories