vote up 0 vote down star

Hi, I'm making a custom control.

Basically what I'm looking for is a OnPreInit event in custom controls. I basically need to know that all of the controls that will be loaded of type MyCustomControl are constructed or not.

Ok, so basically I need to know in the constructor if the current instance being constructed will be the last.

Note: My custom control contains other controls(though this isn't guaranteed) but it will not contain controls of MyCustomControl class.

I've thought about doing an override of AddParsedObject. But if the instance of my custom control doesn't contain any controls, will this still get called?

flag

... I have to ask why? – Charles Conway Oct 24 at 20:19
Ok, I am making an alternative communication class for webparts. Instead of deriving from UserControl in the webpart class, you derive from my class. Well, the whole intention is to be able to have communication between webparts in a more powerful way and before Page_Load. Preferably even at Page_Init.. So I put in an event for "AllWebPartsInitialized" so that the instances know it's safe to rely on other webparts existing. – earlz Oct 25 at 4:11

2 Answers

vote up 2 vote down check

Unfortunately the approach you're describing is "non-trivial". That means it might not be technically impossible, but so difficult to do correctly and has so many negatives/downsides that you will be better off stepping back and analyzing the larger problem for a different design. Perhaps if you re-posted articulating the end goal you're trying to accomplish, we can help you find an approach that is viable.

link|flag
vote up 0 vote down

I hate to say use a counter, but you're either going to have to pass state information through a dedicated class (or the context,) which you could do in the constructor of the control prior to testing if you've got as many as you need, or you could do a recursive walk through Page.Controls and their .Controls and test each one for type....

link|flag
Well, I tried hooking into Page.OnPreInit. But Page is set to null in the constructor of the custom control, otherwise doing a recursive walk would work as well – earlz Oct 24 at 17:23

Your Answer

Get an OpenID
or

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