That’s pretty much it. I need to read a server controls event, which will “occur” after Init, but I need to do it during Init. The information is in there somewhere, how do I get to it?
EDIT:
Specifically, I am trying to find which MenuItem in a Menu was clicked. It needs to be done in Page_Init because it drives some other code (which has to live in Page_Init).
You can easily identify which control caused the event with something like:
lifted from http://ryanfarley.com/blog/archive/2005/03/11/1886.aspx
I’ve used this with success before although I’ve never actually needed event data – just knowledge of the event fired.