ASP.Net - Postback

One interesting characteristic of the ASP.Net Forms architecture is the postback. What happens is anytime you click a button, or trigger other sorts of events, you trigger what is known as a postback. The form is resubmitted back to the server, server side logic is processed, and the entire form is rerendered. This page discusses the postback.

Read More