a) In Asp.Net we can check whether a request is a postback or not via Page.IsPostBack
property.But where does this property get its value from? Thus, where in the incoming request does browser put this value?
b) As far as I can tell, hitting a reload button also causes browser to send form data back to the server. Thus, is under the hood hitting browser’s reload
button same as pressing a submit
button ( which is nested within a FORM
element)?
c) Assuming browser displays A.aspx
for the fist time and assuming user clicks browser’s reload
button, then I would think this request will be considered as a postback by Asp.Net (especially since browser also sends back any form data
), but it’s not. Why?
thanx