I was under the impression that a callback doesn't use post back since
we're using it via some ASP.NET control that explicitly states that it
uses callbacks so that postbacks are not used (causing a page re-load).
Yes and no. The data is posted back to the server, but without a page
refresh. IsPostback == true because data has been posted back to the
server, IsCallback is also true because it's a client-side call back
request.
I assume that IsPostback is set to true when the request to the page
contains form data.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.