How to conveniently access a control within a nested master page?
Accessing master page controls is usually straight forward:
Dim ddl As DropDownList = Master.FindControl("ddl")
However when my setup is as follows the control cannot be found, presumably becuase the control is within a content
block:
1 Root Master
<asp:ContentPlaceHolder ID="cphMainContent" runat="server" />
2 Nested Master
<%@ Master Language="VB" MasterPageFile="~/Root.master" AutoEventWireup="false" CodeFile="Nested.master.vb" Inherits="Nested" %>
<asp:Content ID="MainContent" ContentPlaceHolderID="cphMainContent" runat="server">
<asp:DropDownList ID="ddl" runat="server" DataTextField="Text" DataValueField="ID"/>
</asp:Content>
3 Content Page VB.NET
Dim ddl As DropDownList = Master.FindControl("ddl")
Workaround
I have found a solution by traversing up the tree finding the root content placeholder cphMainContent
and then looking for the control within.
cphMainContent = CType(Master.Master.FindControl("cphMainContent"), ContentPlaceHolder)
Dim ddl As DropDownList = cphMainContent .FindControl("ddl")
However this solution seems very roundabout and inefficient.
Can the control be accessed directly from within the content
block of the master page?
Here is an extension method that can handle an arbitrary number of nesting levels:
Use the extension method from any class inheriting from System.Web.UI.Page like so: