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 break mode?
Hi this is the coding for adding data in to an xml table
i want the coding for update and delete
Try
Dim emp_xml_doc As New XmlDocument
If
System.IO.File.Exists(Server.MapPath("emp.xml")) Then
emp_xml_doc.Load(Server.MapPath("emp.xml"))
Dim myrow_element As XmlElement
myrow_element =
emp_xml_doc.CreateElement("EmpDetails")
Dim str As String
str = "
If iam developing an application that must accomodate multiple security levels though secure login and my asp.net web appplication is spanned across three web-servers (using round-robbin load balancing) what would be the best approach to maintain login-in state for the users?
What are Authentication and Authorization?
Define data caching?
What is asp.net ajax?
Explain about Application and Session Events ?
How do I open an ashx file in windows 7?
How to implement form based authentication in asp.net application?
A web service can only be written in .net? State whether true or false.
Define xmlvalidatingreader class.
What is the difference between the asp and asp.net?
How to store checkbox value in database in asp.net mvc? : Asp.Net MVC
Web API supports which protocol?
How we can force all the validation controls to run?