私はこのようなことをしたい:
Base と呼ばれるこのユーザー コントロールを取得しました。
<div>
some content...
<asp:ContentPlaceHolder id="baseContentPlaceHolder" runat="server"></asp:ContentPlaceHolder>
</div>
次に、別のユーザー コントロールでベースを継承し、コンテンツに追加します。
<asp:Content id="subBase" contentplaceholderid="baseContentPlaceHolder" runat"server">
stuff to be added...
</asp:Content>
ContentPlaceHolder で行うことは可能ですか?
この動作はどのように解決できますか?