can you define autopostback and postback and it’s differences and which web server control support autopostback and postback and also the difference between postback and callback?
can you define autopostback and postback and it’s differences and which web server control
Share
A postback is initiated by the browser, and reloads the whole page, usually when a control on the page (e.g. a button) is changed.
With some controls (e.g. Checkboxes), you choose if changing the control should result in a postback. This property is called AutoPostback.
A callback is initiated by java script in the page, and can load/update parts of the page, e.g. by manipulating the DOM.