[ASP.NET] Access a content control in C# when using Master Pages - Stack Overflow most recent 30 from stackoverflow.com 2009-12-11T00:41:29Z http://stackoverflow.com/feeds/question/1060443 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1060443/asp-net-access-a-content-control-in-c-when-using-master-pages 1 [ASP.NET] Access a content control in C# when using Master Pages ggervais 2009-06-29T20:44:51Z 2009-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#1060523 0 Answer by pho3nix for [ASP.NET] Access a content control in C# when using Master Pages pho3nix 2009-06-29T20:59:09Z 2009-06-29T20:59:09Z <p>I use this code for acess to files recursively:</p> <pre><code> /// &lt;summary&gt; /// 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 /// &lt;/summary&gt; /// &lt;param name="control"&gt;&lt;/param&gt; /// &lt;param name="controlType"&gt;&lt;/param&gt; /// &lt;returns&gt;&lt;/returns&gt; public static List&lt;string&gt; GetChildControlsId(Control control, Type controlType) { List&lt;string&gt; FoundControlsIds = new List&lt;string&gt;(); GetChildControlsIdRecursive(FoundControlsIds, control, controlType); // return the result as a generic list of Controls return FoundControlsIds; } public static List&lt;string&gt; GetChildControlsIdRecursive(List&lt;string&gt; 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#1060536 1 Answer by Duncan for [ASP.NET] Access a content control in C# when using Master Pages Duncan 2009-06-29T21:02:00Z 2009-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#1061497 1 Answer by boon for [ASP.NET] Access a content control in C# when using Master Pages boon 2009-06-30T02:44:01Z 2009-06-30T02:54:38Z <p>How about including the path to your master page at the top of your child page</p> <pre><code>&lt;%@ MasterType VirtualPath="~/MasterPages/PublicUI.Master" %&gt; </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>&lt;asp:Label ID="lblSomething" runat="server" /&gt; </code></pre> <p>Usage:</p> <pre><code>Master.SomethingLabel.Text = "some text"; </code></pre>