Click here to Skip to main content
15,881,173 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.7K   2.1K   77  
Creating ContentPlaceHolders and Contents programmatically
using System;
using System.Data;
using System.Configuration;
using System.Collections;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Web.UI.HtmlControls;

namespace DynamicMasterPages
{
    public partial class Default2 : System.Web.UI.Page
    {
        protected void Page_PreInit(object sender, EventArgs e)
        {
            object cphnum = HttpContext.Current.Session["cphnum"];
            if (cphnum == null || !(cphnum is int))
                return;
            int num = (int)cphnum;
            //create the content for the pages
            for (int i = 1; i < num + 1; i++)
                base.AddContentTemplate("ContentPlaceHolder" + i.ToString(), new CompiledTemplateBuilder(new BuildTemplateMethod(this.Build)));
        }

        private void Build(Control c)
        {
            Literal b = new Literal();
            b.ID = "Literal1";
            b.Text = "Page";
            c.Controls.Add(b);
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

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