0

I have never used an ASP.NET callback as described here: Difference between a Postback and a Callback.

Can a webpage use callbacks and Postbacks or are they mutually exclusive i.e. one or the other? I have spent some time researching this but I cannot find an answer to my specific question.

Community
  • 1
  • 1
w0051977
  • 15,099
  • 32
  • 152
  • 329

1 Answers1

0

ASP.NET web page can have the callback and postback both . It is just how you are going to use it. Callback is nothing but old way of making AJAX call in .net framework . For some feature like the lightweight one you can go for call back and other one you can go for full post back.It is similar like in normal webpage you can postback the data if you add the form tag and on the same page you have normal AJAX call to update some part of html .

Devesh
  • 4,500
  • 1
  • 17
  • 28