Title explains it all really, which event fires first in the page life cycle and why?

link|improve this question

1  
A debugger can tell you in 5 seconds, but I'll bet on the Button firing last. – Henk Holterman Oct 29 '10 at 9:11
Actually, the button fires first! I have no idea why though... – Liggi Oct 29 '10 at 9:46
Well, maybe you want to do some stuff on button click before selecting the entire object. – Simon Dugré Nov 1 '10 at 17:17
feedback

1 Answer

up vote 1 down vote accepted

Look at this image: http://i.msdn.microsoft.com/dynimg/IC386473.png

The third column in the image shows the Control Changed events (in yellow bubble) fire before the DataBinding events. The Selecting event is a databinding event, so it gets fire after the button click.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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