Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

1) I know there are lots of web sites that describe in what order events are called during the Asp.Net page life-cycle. But is there also a tool, perhaps Reflector, that would enable me to figure out by myself in what order are ALL the page’s events and their event handlers called during the page’s life cycle?

2) Would you say that trying to figure out exactly what is going on under the hood is a good idea or a waste of time? To clarify – I’d like to figure out exactly what is going on when a control tree is build – thus all the method calls, all the events called etc needed for control tree to be build ( I imagine there are hundreds or perhaps thousands lines of code written just for building a control tree).

thanx

share|improve this question

5 Answers

up vote 6 down vote accepted

ASP.net Tracing would be the one I'd go for. It'll show you when each method in your page/control is called and you can also output additional data to the trace as well. It's primarily intended (I guess!) as a debugging tool, but I think it'll be more than adequate to show you the exact lifecycle a page is undertaking.

To turn on tracing, add the following to your web.config file:

 <trace enabled="true" pageOutput="true" requestLimit="10" traceMode="SortByTime" localOnly="true" />

As Jim Schubert pointed out in a comment, you can also modify the @page directive of a specific page to enable tracing:

 <%@ Page Title="" Trace="true"......

You can then access the trace details by navigating to "Trace.axd". If you're using a remote server (i.e. not Cassini or IIS on localhost) then change the localonly="true" to localonly="false" in the snippet above.

Having an understanding of what goes on under the hood in WebForms can be very useful, it certainly makes solving some of the oddities and edge-cases a lot easier.

share|improve this answer
3  
You can do this on a per-page basis by adding to the aspx web form's Page directive: Trace="True". e.g. <%@ Page Title="" Trace="true" ... – Jim Schubert Mar 3 '10 at 20:10
1  
@AspOnMyNet, I think PreInit is the first page event, hence there beng nothing shown prior to that? I'm not quite sure what you mean by the second part of your comment, perhaps if you give an example, or rephrase it? :) – Rob Mar 3 '10 at 20:27
1  
@Rob: look here msdn.microsoft.com/en-us/library/ms178472.aspx – ram Mar 3 '10 at 20:36
1  
@Ram, I already have done, and I was correct, PreInit is the first page level event. I'm really not quite sure why you've directed me to that page :) – Rob Mar 3 '10 at 20:40
1  
@AspOnMyNet, The ASP.net engine (a simplification lies ahead) takes care of this by recursively calling CreateChildControls, starting at the page and working its way down. (msdn.microsoft.com/en-us/library/…) – Rob Mar 3 '10 at 20:48
show 8 more comments

Enabling trace might help you to understand the page life cycle. You'll see the page events that's called while ASP.NET renders the page.

Try simply this, and take a look at your page's bottom :

<%@ Page Language="C#" Trace="true"  %>
share|improve this answer

IMHO, you should understand what is happening in the page lifecycle, to develop a decent application. Knowing only helps, can't hurt. And once you understand, you can design hi-performing applications (knowing that not all modules are needed for your application). See this - for asp.net performance tuning.

Here is a good low level explanation from Rikh Strahl. Look at this diagram, you can understand them better.

share|improve this answer

1) Put a breakpoint in the constructor of the page, then step through the code (F10) to see in which order your code runs. Alternatively, put breakpoints in all events and see in which order they are hit.

2) The definition of time waste depends on what time you are spending and why you would need the information. Generally you should not dig much deeper than what you need for completing the task at hand. The platform is designed so that you don't have to know much at all about what's happening behind the scene to use it.

If it's just for curiosity, then you just have to decide how much of your time you want to waste on it.

share|improve this answer
I've created an empty constructor in code-behind,put a breakpoint in it and step through it, but after two steps ( thus after pressing F10 twice, the page was already loaded ) – AspOnMyNet Mar 3 '10 at 20:54
You have to have some events in the page to see how they are called. Put some handlers like Page_PreInit, Page_Init, Page_Load and Page_PreRender in it, and put some controls in the page and hook up some of their events. – Guffa Mar 3 '10 at 21:24

I know there are lots of web sites that describe in what order events are called during the Asp.Net page life-cycle. But is there also a tool, perhaps Reflector, that would enable me to figure out by myself in what order are ALL the page’s events and their event handlers called during the page’s life cycle?

Yes - I think you should use Reflector (or the FX Source, or another decompiler - Telerik's JustDecompile isn't too bad) and read through the Page source (at least the ProcessRequest method). I did it 4 or 5 years ago, took notes on the major portions, and still refer to it today.

While it's helpful to have graphs, UML diagrams, and other people's words - nothing quite sums it up like your own pseudo-code. It's a pretty easy read, and should take < 30 mins to do - you could be halfway through it by the time you read the answers to this question.

Would you say that trying to figure out exactly what is going on under the hood is a good idea or a waste of time?

Well, there is obviously a limit (in software, there's always another hood to peek under). The full code of Page and Control are likely to be a bit daunting - and subject to change - but reading the source is certainly a good way to grokking the overall concept. It's not necessary to understand every single line.

Some people get all they need from documentation, others prefer unambiguous code. Considering how critically important the lifecycle events are to being a good WebForms developer, I'd certainly recommend doing whatever is necessary until you're comfortable with them.

To clarify – I’d like to figure out exactly what is going on when a control tree is build – thus all the method calls, all the events called etc needed for control tree to be build ( I imagine there are hundreds or perhaps thousands lines of code written just for building a control tree).

Stop imagining, and just look*. It's not hard, the high level isn't terribly complicated, and I think 30 mins will tell you a good bit - at that point, you can decide (or not) to continue the exploration. I'd certainly rather skim the source than go through all the docs on MSDN to get an in-depth understanding (though both are certainly valuable - just in different ways).

*AFAIK, there's no particularly compelling legal argument about viewing either the released source or a decompiled version - but IANAL, your rights may vary, advice void where prohibited, etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.