Accessing custom controls on child homepage from child homepage code behind

Trying to set the value of a literal custom control on my child master page using the code behind the same master page.

Here's some sample code I'm using:

Global.master

<form id="form1" runat="server">
<div>
    <asp:ContentPlaceHolder id="GlobalContentPlaceHolderBody" runat="server">

    </asp:ContentPlaceHolder>
</div>
</form>

      

Template.master (child of Global.master)

<asp:Content ID="TemplateContentBody" ContentPlaceHolderID="GlobalContentPlaceHolderBody" Runat="Server">
<asp:Literal ID="MyLiteral1" runat="Server"></asp:Literal>

<p>This is template sample content!</p>
  <asp:ContentPlaceHolder ID="TemplateContentPlaceHolderBody" runat="server">

</asp:ContentPlaceHolder>

      

Template.master.cs

    protected void Page_Load(object sender, EventArgs e)
{
    MyLiteral1.Text = "Test";
}

      

ContentPage.aspx

< asp:Content ID="ContentBody" ContentPlaceHolderID="TemplateContentPlaceHolderBody" Runat="Server">
</asp:Content>

      

Once I can achieve this, I will also need to be able to access content on global and master pages using content pages.

+2


source to share


3 answers


Found a working solution. In template.master (nested child master), I had to put the code in the OnLoad event.

protected override void OnLoad(EventArgs e)
{
    MyLiteral1.Text= "<p>MyLiteral1 Successfully updated from nested template!</p>";
    base.OnLoad(e);
}

      

Very strange...



Basically, I use the global master as a page with shared code on each page, then I will have different nested pages according to each part of the site. For a nested navigation template, I want to be able to show if the user is logged in and how many items are in the cart.

If there is a better way to achieve this, I am open to suggestions.

+1


source


If I understand your scenario, you want your content pages to refer to elements from your master pages. If so, you need to configure the property to expose them from the master page, and on the content page, you can customize the MasterType directive.



Take a look at this post for an example.

+3


source


EDIT: This is my answer when I thought you were trying to access a child master control from the parent's source code.

You can use the recursive findControl function:

protected Control FindControlRecursive(string id, Control parent)
{
    // If parent is the control we're looking for, return it
    if (string.Compare(parent.ID, id, true) == 0)
        return parent;

    // Search through children
    foreach (Control child in parent.Controls)
    {
        Control match = FindControlRecursive(id, child);

        if (match != null)
            return match;
    }

    // If we reach here then no control with id was found
    return null;
}

      

Then use this code on the main page:

protected void Page_Load(object sender, EventArgs e)
{
//EDIT: if GlobalContentPlaceHolderBody isn't visible here, use this instead:
//Control c = FindControlRecursive("MyLiteral1", Page.FindControl("GlobalContentPlaceHolderBody"));
    Control c = FindControlRecursive("MyLiteral1", GlobalContentPlaceHolderBody);
    if(c != null)
        ((Literal)c).Text = "Test";
}

      

0


source







All Articles