is it possible to create a control that contains child controls without rendering it. So, when I add it to the page it should look like....
<test:parentcontrol id="parent1" runat="server" property1="value1" ... propertyn="valuen">
<test:childcontrol id="child1" runat="server" property1="value1" ... propertyn="valuen"/>
<test:childcontrol id="child3" runat="server" property1="value1" ... propertyn="valuen"/>
<test:childcontrol id="child3" runat="server" property1="value1" ... propertyn="valuen"/>
</test:parentcontrol>
and have the render empty, because it does not equate to anything on the html side. Further, can I cycle through the child control of the parent using the following methodology within the code_behind file:
foreach (Control control in parent1.Controls){
.......
}
would this be possible if I am not technically rendering anything? Also, would I have to do anything special with creating the parent and child controls?