Click here to Skip to main content
16,012,468 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi..
Can any one explane me postback and autopostback property in asp.net
Posted

1 solution

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.

Reference
http://stackoverflow.com/questions/3581893/what-is-the-difference-between-postback-autopostback-and-callback[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900