[ASP.NET] Access a content control in C# when using Master Pages - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T00:41:29Zhttp://stackoverflow.com/feeds/question/1060443http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages1[ASP.NET] Access a content control in C# when using Master Pagesggervais2009-06-29T20:44:51Z2009-06-30T02:54:38Z
<p>Good day everyone,</p>
<p>I am building a page in ASP.NET, and using Master Pages in the process.</p>
<p>I have a Content Place Holder name "cphBody" in my Master Page, which will contain the body of each Page for which that Master Page is the Master Page.</p>
<p>In the ASP.NET Web page, I have a Content tag (referencing "cphBody") which also contains some controls (buttons, Infragistics controls, etc.), and I want to access these controls in the CodeBehind file. However, I can't do that directly (this.myControl ...), since they are nested in the Content tag.</p>
<p>I found a workaround with the FindControl method.</p>
<pre><code>ContentPlaceHolder contentPlaceHolder = (ContentPlaceHolder) Master.FindControl("cphBody");
ControlType myControl = (ControlType) contentPlaceHolder.FindControl("ControlName");
</code></pre>
<p>That works just fine. However, I am suspecting that it's not a very good design. Do you guys know a more elegant way to do so?</p>
<p>Thank you!</p>
<p>Guillaume Gervais. </p>
http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages/1060523#10605230Answer by pho3nix for [ASP.NET] Access a content control in C# when using Master Pagespho3nix2009-06-29T20:59:09Z2009-06-29T20:59:09Z<p>I use this code for acess to files recursively:</p>
<pre><code> /// <summary>
/// Recursively iterate through the controls collection to find the child controls of the given control
/// including controls inside child controls. Return all the IDs of controls of the given type
/// </summary>
/// <param name="control"></param>
/// <param name="controlType"></param>
/// <returns></returns>
public static List<string> GetChildControlsId(Control control, Type controlType)
{
List<string> FoundControlsIds = new List<string>();
GetChildControlsIdRecursive(FoundControlsIds, control, controlType);
// return the result as a generic list of Controls
return FoundControlsIds;
}
public static List<string> GetChildControlsIdRecursive(List<string> foundControlsIds, Control control, Type controlType)
{
foreach (Control c in control.Controls)
{
if (controlType == null || controlType.IsAssignableFrom(c.GetType()))
{
// check if the control is already in the collection
String FoundControl = foundControlsIds.Find(delegate(string ctrlId) { return ctrlId == c.ID; });
if (String.IsNullOrEmpty(FoundControl))
{
// add this control and all its nested controls
foundControlsIds.Add(c.ID);
}
}
if (c.HasControls())
{
GetChildControlsIdRecursive(foundControlsIds, c, controlType);
}
}
</code></pre>
http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages/1060536#10605361Answer by Duncan for [ASP.NET] Access a content control in C# when using Master PagesDuncan2009-06-29T21:02:00Z2009-06-29T21:02:00Z<p>Rick Strahl has a good explanation (and sample code) here - <a href="http://www.west-wind.com/Weblog/posts/5127.aspx" rel="nofollow">http://www.west-wind.com/Weblog/posts/5127.aspx</a></p>
http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages/1061497#10614971Answer by boon for [ASP.NET] Access a content control in C# when using Master Pagesboon2009-06-30T02:44:01Z2009-06-30T02:54:38Z<p>How about including the path to your master page at the top of your child page</p>
<pre><code><%@ MasterType VirtualPath="~/MasterPages/PublicUI.Master" %>
</code></pre>
<p>Which will allow you to directly call code from your master page code behind.</p>
<p>Then from your master page code behind you could make a property return your control, or make a method on the master page get your control etc.</p>
<pre><code> public Label SomethingLabel
{
get { return lblSomething; }
}
</code></pre>
<p>Refers to</p>
<pre><code><asp:Label ID="lblSomething" runat="server" />
</code></pre>
<p>Usage:</p>
<pre><code>Master.SomethingLabel.Text = "some text";
</code></pre>