I come to you this time with a question to do with .NET. I was given the challenge of finding out the four steps involved with postback.
The exact challenge is:
‘There are four methods executed each time there is a postback. Describe and identify each.’
From what I can tell (this is a challenge for a .NET class), postback is what occurs when you submit a web form followed by the back button.
The only clues we are given are:
‘First time a page is requested, is it a postback? No.’
That’s all I have. Anyone have any ideas or resources?
Thanks in advance!
These are my notes from Reflectoring the source at some point:
That makes LoadAllState, ProcessPostData, RaiseChangedEvents, and RaisePostBackEvent the ones that are only done on PostBack.