tags:

views:

41

answers:

4

Hi,
Can anyone suggest me good reading materials on the internals of how ASP.NET handles page postback and events?

-Justin Samuel.

A: 

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.

Andrew Hare
+1  A: 

I would absolutely read Microsoft's primer on the ASP.NET page lifecycle. Knowing the page lifecycle well will save you many headaches!

Eric
A: 

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.

thekaido