ASP.NET Custom/User Control With Children
- by Bob Fincheimer
I want a create a custom/user control that has children (NOT a template control).
For Example, I want my control to have the following markup:
<div runat="server" id="div">
<label runat="server" id="label"></label>
<div class="field">
<!-- INSERT CHILDREN HERE -->
</div>
</div>
and…