Click here to Skip to main content
15,885,546 members
Articles / Web Development / ASP.NET

Really Dynamic Master Pages

Rate me:
Please Sign up or sign in to vote.
4.10/5 (17 votes)
8 May 2012CPOL4 min read 197.8K   2.1K   77   39
Creating ContentPlaceHolders and Contents programmatically

Introduction

Master pages are a very cool feature in ASP.NET 2.0. They allow you to easily create a consistent look and feel throughout your website. They also provide an easy way to set/change the master pages at runtime. This is achieved by setting the MasterPageFile property of a page in the PreInit event. This, however, requires that the master pages have ContentPlaceHolders which the Content controls on the page reference through the ContentPlaceHolderID property. This article focuses on creating ContentPlaceHolders, Contents and linking them together programmatically.

Background

When I first used ASP.NET 2.0, one of the first features I used were master pages. I soon learned how to switch between such at runtime. Some time later, I was working on a small project, where the goal was to create as many things dynamically as possible (kind of a web application framework). I had a thought about using master pages that are stored in a DB (as metadata) and then later building them dynamically. I soon found out that this task is not as easy as it looks. It requires more than just the knowledge of how to create controls through code. I did some research on how to properly do this and I wanted to share this technique, hence this article was born.

Using the Code

The sample provided contains two pages and a master page. Its only purpose is to demonstrate how things are done. On the start page (Default.aspx), you are to enter a number, press a button and let the magic begin. Despite the visually not very attractive result on the next page (only some text can be seen), the magic still does happen in the background. Let's see what happens. For this, you should have some knowledge about the ASP.NET page lifecycle.

The most important step is to create the content on the page. You will be surprised to find that no creation of Content classes is necessary. Instead you should use the AddContentTemplate method of the Page class. Chances are you never heard of this method, it is because it has the [EditorBrowsable(EditorBrowsableState.Never)] attribute applied and thus isn't visible for IntelliSense. MSDN has some information about it, you can read it here. You need two parameters, the first being the name of the ContentPlaceHolder it will be linked to (you can only set the ContentPlaceHolderID attribute in the markup), the other an ITemplate. If you have never worked with templated controls, you should find this a bit complicated, but it really isn't. However explaining this still goes beyond the reach of this article. In this example, all the content is the same, but that's not obligatory, then again easier to implement and satisfactory for demonstration purposes.

C#
protected void Page_PreInit(object sender, EventArgs e)
{
    //...same check as in the constructor of the Master Page 
    for (int i = 1; i < num + 1; i++)
        base.AddContentTemplate("ContentPlaceHolder" + i.ToString(),
            new CompiledTemplateBuilder(new BuildTemplateMethod(this.Build)));
}

Using constructors in ASP.NET is a very uncommon scenario, but in this case there's no other place to put the code needed, because the master page's Init event is already too late and there's no PreInit event. You just need to add the names of the ContentPlaceHolder controls to be created later to the ContentPlaceHolders collection of the Master class. Note that you must use the names in lowercase.

C#
public MasterPage()
{
   object cphnum = HttpContext.Current.Session["cphnum"];
   if (cphnum == null || !(cphnum is int))
      return;
   num = (int)cphnum;
   for (int i = 1; i < num + 1; i++)
      base.ContentPlaceHolders.Add("contentplaceholder" + i.ToString()); 
}

Finally you should instantiate the ContentPlaceHolders and add them to the control hierarchy of the page. This is also achieved in a for loop, so that the required number of controls gets created. For this purpose, you must use the ContentTemplates collection the master pages base, which as of type is an ITemplate.

C#
protected void Page_Init(object sender, EventArgs e)
{
    //...
    for (int i = 1; i < num + 1; i++)
    {
    ContentPlaceHolder cph = new ContentPlaceHolder();
    cph.ID = "ContentPlaceHolder" + i.ToString();
    PlaceHolder1.Controls.Add(cph);
    ((ITemplate)base.ContentTemplates["ContentPlaceHolder" +
        i.ToString()]).InstantiateIn(cph);
    }
}

Now that you know the basics, you can easily extend the sample to be more useful than its current form.

Nesting master pages 

Creating nesting master pages with this technique is also supported, however a slight modification of the code is needed. Theoretically a nested master page is nothing more then both a master page with it's own ContentPlaceHolders and a regular page with Contents to fill in it's parent's placeholders. Note that content needs to exist on the content page before the master can use it to populate it's placeholder, however the init events fire in opposite order, so the main master's one fires before the nested one's, resulting in a NullReferenceException (or when checked for, in empty content). And the constructor is too early to use for this, because then it would ruin the synergy between the nested master and the content page, for similiar reasons. So another event must be used called FrameworkInitialize(). This fires in the needed time window, and also in the correct order so it allows for deep nesting. A demo is also available for this scenario, see the list of downloads above. 

History 

  • 12.02.2007 - Initial posting of the article
  • 16.04.2007 - Added VB.NET demo
  • 07.05.2012 - Added a section about nesting 

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Hungary Hungary
I'm a Hungarian developer interested mostly in web development.

Comments and Discussions

 
AnswerRe: How to write html code in a ContentPlaceHolder in Master page Pin
szukuro17-Apr-07 21:15
szukuro17-Apr-07 21:15 
GeneralRe: How to write html code in a ContentPlaceHolder in Master page Pin
gorkemdur18-Apr-07 3:18
gorkemdur18-Apr-07 3:18 
QuestionIs there a VB version? Pin
reg200615-Apr-07 15:04
reg200615-Apr-07 15:04 
AnswerRe: Is there a VB version? Pin
szukuro16-Apr-07 0:04
szukuro16-Apr-07 0:04 
GeneralRe: Is there a VB version? Pin
reg200616-Apr-07 16:25
reg200616-Apr-07 16:25 
GeneralDynamically filling placeholders Pin
DaveWarren12-Apr-07 0:44
DaveWarren12-Apr-07 0:44 
GeneralRe: Dynamically filling placeholders Pin
szukuro12-Apr-07 8:09
szukuro12-Apr-07 8:09 
GeneralRe: Dynamically filling placeholders Pin
DaveWarren12-Apr-07 9:11
DaveWarren12-Apr-07 9:11 
Thanks for the fast reply!

So far I have managed to get the page to create the placeholders from the data in the database, but I am having trouble working out how to get the build method to display the correct content for those placeholders.

This code appears in Page_PreInit
        <br />
foreach (DataSet1.DataTable1Row contentRow in content2)<br />
{<br />
 base.AddContentTemplate(contentRow.cph_name, new CompiledTemplateBuilder(new BuildTemplateMethod(this.Build)));<br />
}<br />


And I can't see how to pass the content to the build method.

I have tried to pass build a string with the content in but haven't managed to get it to work.

Any more ideas greatly appreciated Smile | :)

Thanks again

Dave
GeneralRe: Dynamically filling placeholders Pin
szukuro12-Apr-07 12:01
szukuro12-Apr-07 12:01 
GeneralRe: Dynamically filling placeholders Pin
DaveWarren13-Apr-07 1:50
DaveWarren13-Apr-07 1:50 
GeneralDynamic Masterpage Content Pin
Paul Molloy2-Apr-07 6:02
Paul Molloy2-Apr-07 6:02 
GeneralRe: Dynamic Masterpage Content Pin
szukuro2-Apr-07 11:42
szukuro2-Apr-07 11:42 
GeneralRe: Dynamic Masterpage Content Pin
Paul Molloy2-Apr-07 23:39
Paul Molloy2-Apr-07 23:39 
QuestionLate bound master pages Pin
aprenot13-Feb-07 8:47
aprenot13-Feb-07 8:47 
AnswerRe: Late bound master pages [modified] Pin
szukuro13-Feb-07 21:55
szukuro13-Feb-07 21:55 
GeneralRe: Late bound master pages Pin
VirtualFduch27-May-07 4:29
VirtualFduch27-May-07 4:29 
GeneralRe: Late bound master pages Pin
szukuro27-May-07 13:21
szukuro27-May-07 13:21 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.