Nested controls .Net

  • Thread starter Thread starter humbleFunGuy
  • Start date Start date
H

humbleFunGuy

What does nested controls mean in .Net? Any help is appreciated.

Thanks,
fanzi
 
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>
 

Ask a Question

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.

Ask a Question

Back
Top