Posted on: 12/3/2013 2:26:48 AM | Views : 802

Hello Everyone,
I am trying to understand the Web Forms Page Event Life Cycle and had a few questions, any help is much appreciated!
Series of Events:
1. The Web Forms page event life cycle begins with a request to a Page resource. 2. The HTTP handler processes the request and initializes the correct Page resource to handle the request. 3. The page initializes, and all server controls in the page raise their initialization events as well. 4. On postbacks (when a HTTP Post request is received), Postback Data (data that is available in the form) is loaded.
Question: I'm not sure I am understanding Postback here. I thought a postback goes from the user to the server. So how would it be loaded? Isn't that the other way around?
5. The page loads and all server controls raise their Load event.
Question: So is the data loading fi ...

Go to the complete details ...