When a page is requested on server and response is sent back to the client, we tend to understand that a request/response relation exists between client and server where for every request a new request/response gets generated, than how does the server know, that IsPostBack is true/false on first or subsequent request?
Asked
Active
Viewed 99 times
0
-
5Requests have types. When you request a page you send a GET. When you clikc a button, ie submit a form, you send a POST. – Panagiotis Kanavos Dec 24 '15 at 10:46
-
Alright, I get it, I would want to mark your answer as the correct one. – daisy Dec 29 '15 at 09:44