Justin Samuel
Justin Samuel

Reputation: 1083

ASP.NET - Page Postbacks and event handling

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

Answers (4)

bkaid
bkaid

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

Eric
Eric

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

Andrew Hare
Andrew Hare

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

Related Questions