How to make UserControl to use master page placeholders? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T07:23:39Z http://stackoverflow.com/feeds/question/1031597 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1031597/how-to-make-usercontrol-to-use-master-page-placeholders 0 How to make UserControl to use master page placeholders? igor 2009-06-23T09:47:40Z 2009-11-13T21:00:16Z <p>Hello all.</p> <p>There's quite weird issue and I wonder if it had ever occurred before. It looks odd that nobody had been caught by it, by Google says so.</p> <p>that's what we have:</p> <p>Master page</p> <p>Masterpage.master</p> <p> blahblagblag</p> <p>User control whose page is bound to mentioned-above master page</p> <p>According design, we need to define from .ascx user control</p> <pre><code>SomeControl.ascx &lt;asp:Content ContentPlaceHolderID="phMaster"&gt; // this will not work, and issue is to make it work </code></pre> <p>But how to do it, considering that user controls cannot be bound to masterpage?</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1031597/how-to-make-usercontrol-to-use-master-page-placeholders/1106738#1106738 0 Answer by Steve Temple for How to make UserControl to use master page placeholders? Steve Temple 2009-07-09T22:19:31Z 2009-07-09T22:19:31Z <p>I don't think a UserControl can work in the way you are trying t to reference it. You would have to put an intermediary aspx page with the master page set which has a Content control referencing your ContentPlaceholder and includes your user control. You can't directly reference that control by going to SomeControl.ascx you'd have to go to a page in which the control sits.</p>