views:

26

answers:

1

The UserControl class inherits from TemplateControl which implements INamingContainer. Since this is "only a marker interface" I was wondering if it's possible to opt-out of the behavior that this interface brings with it.

I am developing a templated control based on a user control, and I want the controls inside the template to be accessible in the page without using FindControl(id).

A: 

As far as I know this is not possible.

michielvoo