Like anything nested it simply means that a control can contain other
controls of similar type and so one. A text box is not a nexted control,
but a repeater can be a nested control if contains other repeaters.
<asp:Repeater ...>
<!-- The following is nested. -->
<asp:Repeater ...>
<!-- The following is nested again. -->
<asp:Repeater>
</asp:Repeater>
</asp:Repeater>
</asp:Repeater>
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.