I can't find a good article that solves my following issue, so if anyone has the answer or just a link to the answer I would be happy.
Let's say I have created a UserControl called MyUserControl.ascx
I reg it in ascx with prefix uc
<uc:MyUserControl runat="server" id="uc_test" SomeProperty="true">
<InnerContent>
...
Controls added in here....
<asp:Button runat="server" id="btn_test" Text="Test">
...
<InnerContent>
</uc:MyUserControl>
I know how to create a usercontrol and how to add properties and events to it.
BUT how do I make the "InnerContent" field in my usercontrol?
I have no clue so please be a little specific :)
Cheers