マスターページのPlaceHolderに読み込まれたContent要素の要素IDを取得する方法はありますか? EXのためにContentPageをMasterPageに読み込むContentPlaceHolder
: 私のマスターページ、
以下<form id="form1" runat="server">
<div>
<asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
</asp:ContentPlaceHolder>
</div>
</form>
は、マスターページを使用して他のページです:
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
I am the child page
<asp:Label ID="lbl" runat="server"></asp:Label>
</asp:Content>
マスターPageLoadにコンテンツID( "Content2")を取得する方法。
可能なことをお勧めします。事前
は、そのコンテンツセクション内のコントロールに得るためにあなたの本当の目標です(すなわち、 "lbl"ラベル)? – patmortech
私はコンテンツセクションID(すなわち "Content2")を取得する必要があります – sandeep
@sandeep:私が提供したコードスニペットを試しましたか? – sll