ASP.NET Master Page & Containers - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T14:47:17Z http://stackoverflow.com/feeds/question/964206 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/964206/asp-net-master-page-containers 0 ASP.NET Master Page & Containers Darren Oster 2009-06-08T10:14:45Z 2009-06-08T10:30:43Z <p>I have been using ASP.NET MVC for the past few months, after successfully ignoring ASP.NET for years. I have a (simple) MVC site where I have used a Master Page for the overall look, then, in the content pages, called RenderPartial on subpages with their own Master Pages to give the subcontent a consistent Container style.</p> <p>I need to shift this site to ASP.NET (not MVC), but can't work out how to mimic this behavior. If I use the subcontent as User Controls, they don't work through Master Pages, but I can't use them as Pages (they must inherit from UserControl).</p> <p>Sorry if this is a bit vague, but if anyone thinks they know what I'm after and can help, I'd be grateful. Thanks.</p> http://stackoverflow.com/questions/964206/asp-net-master-page-containers/964258#964258 0 Answer by CertifiedCrazy for ASP.NET Master Page & Containers CertifiedCrazy 2009-06-08T10:30:43Z 2009-06-08T10:30:43Z <p>If your condition is with groups of pages with similiar child content layout you should look into <a href="http://msdn.microsoft.com/en-us/library/x2b3ktt7.aspx" rel="nofollow">Nested Master Pages</a>. So you can have secondary Master Pages built on top of the original. </p> <p>If you are using one additional Master Page for each page then you should probably consider refactoring your code to use a <a href="http://msdn.microsoft.com/en-us/library/wtxbf3hh.aspx" rel="nofollow">Content Page</a> for each child page where they all use the same Master. Then you are only replacing the content placeholder with your specific content for each page, where a user control could be placed into the ContentPlaceholder.</p> <p>Sorry my answer goes in 2 directions but the question was a little vague. Hope this provides some help.</p>