Reputation: 1083
Can anyone suggest me good reading materials on the internals of how ASP.NET handles page postback and events?
-Justin Samuel.
Upvotes: 0
Views: 2682
Reputation: 8558
Try to read these articles:
Upvotes: 0
Reputation: 52073
If you are just learning ASP.NET, check out ASP.NET MVC as an alternative which will make a lot more sense coming from other web platforms and doesn't have the added abstraction of events, state, and postbacks which http wasn't exactly designed to have.
Upvotes: 0
Reputation: 3334
I would absolutely read Microsoft's primer on the ASP.NET page lifecycle. Knowing the page lifecycle well will save you many headaches!
Upvotes: 1
Reputation: 351476
Please see How postback works in ASP.NET:
In this article, we will take a closer look at how ASP.NET pages post back to themselves, and how to customize this feature in our web applications.
Upvotes: 0