Click here to Skip to main content
15,884,684 members
Articles / Web Development / CSS
Article

Dynamic Themes in ASP.NET 2.0 (C#)

Rate me:
Please Sign up or sign in to vote.
4.79/5 (49 votes)
19 Jun 2006CPOL1 min read 437.6K   5.9K   143   44
A step by step guide to create dynamic themes in ASP.NET 2.0.

Sample Image - dynamicThemes.jpg

Introduction

ASP.NET 2.0 makes dynamic themes really easy. No need to envy someone having cool multiple themes, you can have your own instantly! This article gives you step by step instructions on how to make dynamic themes in C#. You can try this code out with the Personal Web Site Starter Kit.

The result

Live demo is available here. Click on "change themes" on the top left corner, under the logo.

The code

  1. Step 1: Under the App_Code folder, we add a class file named Theme.cs:
  2. C#
    public class Theme
    {
        private string _name;
        public string Name
        {
            get { return _name; }
            set { _name = value; }
        }
        public Theme(string name)
        {
            Name = name;
        }
    }
  3. Step 2: Under the App_Code folder, we add a ThemeManager class file named ThemeManager.cs. This will list all the available themes under the /App_Themes folder.
  4. C#
    using System;
    using System.Data;
    using System.Configuration;
    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;
    using System.Collections;
    using System.Collections.Generic;
    using System.IO;
    public class ThemeManager
    {
    #region Theme-Related Method
        public static List<Theme> GetThemes()
        {
            DirectoryInfo dInfo = new DirectoryInfo(
              System.Web.HttpContext.Current.Server.MapPath("App_Themes"));
            DirectoryInfo[] dArrInfo = dInfo.GetDirectories();
            List<Theme> list = new List<Theme>();
            foreach (DirectoryInfo sDirectory in dArrInfo)
            {
                Theme temp = new Theme(sDirectory.Name);
                list.Add(temp);
            }
            return list;
        }
    #endregion
    }
  5. Step 3: Comment out any pre-defined themes such as <!--<pages styleSheetTheme="Black"/>--> in the web.config. You don't need this because the application level default theme will be specified in the BasePage class in Step 6.
  6. Step 4: In you master page, such as Default.master, add a data source and a radiobutton list. You can use a dropdownlist if you would prefer that.
  7. ASP.NET
    <asp:ObjectDataSource ID="ThemeDataSource" runat="server" 
     SelectMethod="GetThemes" TypeName="ThemeManager" ></asp:ObjectDataSource>
    <asp:RadioButtonList ID="strTheme" runat="server" DataTextField=name 
     DataValueField=name OnSelectedIndexChanged="strTheme_SelectedIndexChanged" 
     OnDataBound="strTheme_DataBound" DataSourceID="ThemeDataSource" 
     AutoPostBack=true RepeatDirection=Horizontal />
  8. Step 5: In the master page code-behind, such as Default.master.cs, add these methods:
  9. C#
    protected void strTheme_DataBound(object sender, EventArgs e)
    {
        strTheme.SelectedValue = Page.Theme;
    }
    protected void strTheme_SelectedIndexChanged(object sender, EventArgs e)
    {
        Session.Add("MyTheme", strTheme.SelectedValue);
        Server.Transfer(Request.FilePath);
    }
  10. Step 6: Add the BasePage class under App_Code, and specify the default theme. Here, we use "White".
  11. C#
    using System;
    using System.Data;
    using System.Configuration;
    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;
    
    
    public class BasePage : System.Web.UI.Page
    {
        protected override void OnPreInit(EventArgs e)
        {
            base.OnPreInit(e);
            if (Session["MyTheme"] == null)
            {
                Session.Add("MyTheme", "White");
                Page.Theme = ((string)Session["MyTheme"]);
            }
            else
            {
                Page.Theme = ((string)Session["MyTheme"]);
            }
        }
    }
  12. Step 7: Inherit all the pages using the dynamic theme from BasePage:
  13. C#
    public partial class Default_aspx : BasePage
    {
    }

Happy programming!

License

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


Written By
United States United States
http://www.edream.org/resume.aspx

Comments and Discussions

 
QuestionThemes Pin
Sagar Pulidindi3-Jun-13 19:32
Sagar Pulidindi3-Jun-13 19:32 
Questionvote of 5 Pin
Member 878749724-Aug-12 7:45
Member 878749724-Aug-12 7:45 
GeneralMy vote of 5 Pin
Md. Mainuddin30-Nov-11 4:06
Md. Mainuddin30-Nov-11 4:06 
QuestionMy Vote of 5 Pin
Praveen Kullu27-Nov-11 23:32
Praveen Kullu27-Nov-11 23:32 
GeneralMy Vote of 5 Pin
RaviRanjanKr20-Nov-11 20:46
professionalRaviRanjanKr20-Nov-11 20:46 
GeneralMy vote of 5 Pin
Niranjankr15-Nov-11 0:10
Niranjankr15-Nov-11 0:10 
GeneralDemo link is broken Pin
Michael Freidgeim17-Jun-11 17:21
Michael Freidgeim17-Jun-11 17:21 
GeneralMy vote of 1 Pin
sheradhakar17-Feb-11 23:02
sheradhakar17-Feb-11 23:02 
GeneralReally nice article.... best demonstration. Pin
PrathameshP23-Dec-09 23:18
PrathameshP23-Dec-09 23:18 
GeneralPerfect! Pin
netizenk18-Jun-09 12:05
professionalnetizenk18-Jun-09 12:05 
Generaldynamic web asp.net c# Pin
magdyeltahaan26-May-09 22:08
magdyeltahaan26-May-09 22:08 
QuestionChange look and feel of portions of the page based on selected theme. Pin
Sudipta Chaudhari24-Nov-08 21:35
Sudipta Chaudhari24-Nov-08 21:35 
QuestionPlease help me.... Pin
Abhishek Sur14-Nov-07 1:10
professionalAbhishek Sur14-Nov-07 1:10 
GeneralDynamic Themes Pin
webert125-Oct-07 10:13
webert125-Oct-07 10:13 
GeneralProfiles are better than sessions Pin
wali10117-Oct-07 6:01
wali10117-Oct-07 6:01 
Questionpostback Pin
iron10623-Jul-07 2:59
iron10623-Jul-07 2:59 
QuestionHelp me! Server.MapPath Pin
cuongnp3-Jul-07 14:23
cuongnp3-Jul-07 14:23 
AnswerRe: Help me! Server.MapPath Pin
cuongnp3-Jul-07 17:45
cuongnp3-Jul-07 17:45 
GeneralAny way to persist the state Pin
Liquid Len30-Apr-07 9:25
Liquid Len30-Apr-07 9:25 
GeneralRe: Any way to persist the state [modified] Pin
D. Kuzmanovic4-Dec-08 22:33
D. Kuzmanovic4-Dec-08 22:33 
QuestionExample Pin
M-Daraghmeh8-Apr-07 1:07
M-Daraghmeh8-Apr-07 1:07 
Generalhamed ( Elixir ) Pin
hamedkocholo31-Mar-07 23:22
hamedkocholo31-Mar-07 23:22 
QuestionUploading a new theme/skin Pin
AlexanderViken29-Jan-07 8:56
AlexanderViken29-Jan-07 8:56 
AnswerRe: Uploading a new theme/skin Pin
Juba22-Feb-07 9:06
Juba22-Feb-07 9:06 
GeneralNice Article Pin
Manish Pansiniya13-Dec-06 18:51
Manish Pansiniya13-Dec-06 18:51 

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.