What is postback method?

PostBack is the name given to the process of submitting all the information that the user is currently working on and send it all back to the server . Postback is actually sending all the information from client to web server, then web server process all those contents and returns back to client.

Read more

What is the meaning of postback?

In web development, a postback is an HTTP POST to the same page that the form is on . In other words, the contents of the form are POSTed back to the same URL as the form. Postbacks are commonly seen in edit forms, where the user introduces information in a form and hits “save” or “submit”, causing a postback.

Read more