Tips for Nested Master Pages and VS 2005 Design-Time
Posted by: ScottGus Blog,
on 11 Nov 2005 |
View original | Bookmarked: 0 time(s)
One of the cool advanced features of the new Master Pages feature in ASP.NET 2.0 is the ability to nest them. For example, you could define a top-level master-page called MainMaster.master that defines a common logo header and footer, and defines a content-placeholder for the page called content. You could then define two sub-masters beneath it one that provides a two-column layout model for the content (TwoColumnMaster.master), and one that provides a three-column layout model (ThreeColumnMaster.master). ...