I want to do something like this:
I got this User Control called Base:
<div>
some content...
<asp:ContentPlaceHolder id="baseContentPlaceHolder" runat="server"></asp:ContentPlaceHolder>
</div>
Then i inherit the Base in another User Control and add stuff to the content:
<asp:Content id="subBase" contentplaceholderid="baseContentPlaceHolder" runat"server">
stuff to be added...
</asp:Content>
Is it possible to do with ContentPlaceHolder ?
How can this behavior be solved?