I've never created a custom control, so barring that in mind here is my question:
Is it possible to create a custom control with nested repeaters?
The usage would be something like this:
<tag:NestedRepeater id="foo" runat="server" levels="6"/>
I currently have 6 identical repeaters nested within each other. I then use the ItemDataBound event to bind the child who then binds its child. How does this chaining of events occur within a custom control? I'd like to be able to just have one repeater template that references itself. Is that possible?
Is there anything obvious that I'm overlooking or should know before attempting to do this?