October 2010
Intermediate to advanced
1920 pages
73h 55m
English
In the previous section, you learned how to load a Master Page dynamically for a single page in a website. However, what if you need to load a Master Page dynamically for every content page in a website?
The easiest way to apply the same logic to multiple content pages is to create a new base Page class. The file in Listing 5.22 contains a new base Page class named DynamicMasterPage.
Add the file in Listing 5.22 to your application’s App_Code folder.
Listing 5.22. DynamicMasterPage.cs

The class in Listing 5.22 inherits from the Page class. However, it overrides the base Page ...