Click here to Skip to main content
Licence 
First Posted 5 Oct 2005
Views 322,999
Bookmarked 118 times

Themes and Skins in ASP.NET 2.0

By | 5 Oct 2005 | Article
Introduction to themes and skins in ASP.NET 2.0.
 
Part of The SQL Zone sponsored by
See Also

Introduction

Themes in ASP.NET 2.0 is another cool new feature added to the plethora of additions and improvements made into the next version of the programming model. Using themes, you can easily customize your server controls with the pre-defined looks bundled with the .NET Framework or can make your own themes according to the look and feel of your website. Designing a website was never this easy before.

What are themes

Themes are introduced in ASP.NET 2.0 to counter the troubles faced by developers to define the layout of server controls and make them look coherent to the overall application, with minimum possible efforts. Default or Global themes are contained in a special folder inside the framework and can be declared in the source as well as class files. However, custom made themes can also be saved inside the predefined "App_Themes" folder inside ASP.NET applications, making them easier to manage and interpolate according to your needs. The essential part of themes are skin files with .skin extension. Besides skin files, a theme can be composed of styles sheets .css files as well as images for added support for the layout of the website.

Global themes

Built-in themes are saved in a special location under the installation path of the .NET Framework 2.0:

[Editor coment: Line breaks used to avoid scrolling.]

%SystemRoot%\Microsoft.NET\Framework\VX.X.XXXX\
                        ASP.NETClientFiles\Themes\

The actual name of the subdirectory labeled vX.X.XXXX changes according to the build of ASP.NET 2.0 that you're considering. Themes defined in this path are visible to all applications running on the machine. However, ASP.NET 2.0 Beta 2 users will not find this folder in the specified location because ASP.NET team has dropped the Global Themes support from the beta 2 release of the product. But they will provide pre-defined themes as an add-on when Microsoft launches Visual Studio 2005 in November this year. These add-on themes can be purchased or downloaded separately and will be installed in the specified folder above.

How to apply themes

Themes can be used by a variety of methods. The following examples show you how you can define a theme named "SmokeAndGlass" in your application by different methods:

<%@ Page Theme="SmokeAndGlass" Language="C#"%>

Themes can be set programmatically under the Page_PreInit event handler. It is necessary to define them in this event handler as all the looks are applied to the server controls defined in a particular theme before the page loads. Here is how you can set themes programmatically:

protected void Page_PreInit(object sender, EventArgs e)
{
    // Applying theme to a particular page
    Page.Theme = "SmokeAndGlass";
}

Themes can also be stored in the web.config file which will be applied to the overall application. Themes declared in this file are therefore not required to be declared in any other file under the @Page tag.

<configuration>
    <system.web>
        <pages theme=“SmokeAndGlass” />
    </system.web>
</configuration>

Creating themes

You can create your own themes for applying to your site or individual pages. A page theme is defined in a special App_Themes folder under the root of a web application. In the page theme you define control skins - settings for individual controls such as Buttons, TextBoxes, hyperlinks and DataGrid etcetera. You typically define a control skin for each type of control that you want to use in your application and set the control properties so that all the controls have a similar look. However, note that themes configure only the visual properties of a control and does not alter their runtime behaviour. Here's is a typical example of a skin file:

<asp:Label runat="server" ForeColor="#585880" 
       Font-Size="0.9em" Font-Names="Verdana" />

<asp:Calendar runat="server" BorderStyle="double" 
  BorderColor="#E7E5DB" BorderWidth="2" BackColor="#F8F7F4" 
  Font-Size=".9em" Font-Names="Verdana">
    <TodayDayStyle BackColor="#F8F7F4" BorderWidth="1" 
          BorderColor="#585880" ForeColor="#585880" />
    <OtherMonthDayStyle BackColor="transparent" 
                                ForeColor="#CCCCCC" />
    <SelectedDayStyle ForeColor="#6464FE" 
                       BackColor="transparent" 
                       cssclass="theme_highlighted" />
    <TitleStyle Font-Bold="True" BackColor="#CCCCCC" 
          ForeColor="#585880" BorderColor="#CCCCCC" 
          BorderWidth="1pt" cssclass="theme_header" />
    <NextPrevStyle Font-Bold="True" ForeColor="#585880" 
                            BorderColor="transparent" 
                            BackColor="transparent" />
    <DayStyle ForeColor="#000000" BorderColor="transparent" 
                                 BackColor="transparent" />
    <SelectorStyle Font-Bold="True" ForeColor="#696969" 
                                     BackColor="#F8F7F4" />
    <WeekendDayStyle Font-Bold="False" 
             ForeColor="#000000" BackColor="transparent" />
    <DayHeaderStyle Font-Bold="True" ForeColor="#585880" 
                                 BackColor="Transparent" />
</asp:Calendar>

All global themes that were released with Beta 1 can be found inside the .zip sample application. These files can help you understand the skin files better.

Named skins

Skins without SkindID's are called default skins while skins with SkindID's are known as Named skins. Named skins define different layouts for two or more server controls with unique ID's. IDs can be defined in the same file or you can make different files with different ID's, it all depends on your personal approach and likings. SkinID can be referenced to call named skins. Here is an example:

Named skins

<asp:Label runat="server" ForeColor="#585880" 
   Font-Size="0.9em" Font-Names="Verdana" SkinID="LabelHeader" />

<asp:Label runat="server" ForeColor="#585980" Font-Size="0.8em" 
                       Font-Names="Arial" SkinID="LabelFooter" />

Referencing named skins

<asp:Label id="Header" runat="server" SkinID="LabelHeader" />

<asp:Label id="Header" runat="server" SkinID="LabelFooter" />

Dynamically applying themes

Themes can be dynamically applied to your application by adding a few lines of code. This will give users an option to select themes according to their taste. Here is an example showing you how to achieve this functionality:

protected void Page_PreInit(object sender, EventArgs e)
{ 
    string theme = ""; // setting the value to none
    if (Page.Request.Form.Count > 0) 
    {
        // "Themes" is the ID of dropdownlist
        theme = Page.Request["Themes"].ToString(); 
        if (theme == "Default")
        {
            theme = "";
        }
    }
    this.Theme = theme; // applying themes to the overall page
}

All the controls defined in your Web Forms inherit the properties defined in the theme you select from the DropDownList with ID="Themes". You have to add all the global as well as custom made themes under the "App_Themes" folder in your application, the above mentioned example will not access themes inside the global themes folder.

Conclusion

ASP.NET 2.0 themes are somewhat identical to the Windows XP and Windows Server 2003 themes and provide skins for a variety of controls. Themes are the next big thing in styling after CSS style sheets. Themes can be manipulated programmatically unlike style sheets. All in all, ASP.NET 2.0 themes and skin files are a huge leap forward in providing the best styling experience for web developers in the shortest possible time.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Zeeshan Muhammad



Pakistan Pakistan

Member

Zeeshan Muhammad is a senior student of Department of Electronic Engineering at NED University of Engineering and Technology, Karachi. He has been actively involved in International .NET Association (INETA) MEA/Pakistan activities since July 2003 and is serving as an executive committee member for INETA Pakistan Chapter. He is a .Net Evangelist and love to speak at various knowledge sharing sessions. He authored a number of articles for local publishers and holds some Brainbench Certifications. He was honored to be awarded as the best volunteer in the Middle East / Africa Region by INETA MEA on October 24, 2004.
 
Find more about him at: http://zishu.serveblog.net

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralRe: Theme in master form Pinmembersrisant19:47 18 Feb '09  
GeneralPage_PreInit Pinmemberfigo247715:55 16 Aug '06  
AnswerRe: Page_PreInit Pinmembervenkatinaidu2:51 4 Oct '07  
GeneralRe: Page_PreInit Pinmembervenkatinaidu2:58 4 Oct '07  
QuestionI want to buy themes PinmemberCalvin Fabre16:14 14 Aug '06  
AnswerRe: I want to buy themes Pinmemberloveheda19:26 12 Feb '12  
Generaldoes it work on vs 2003 PinmemberHeart2Soul20:06 15 Jul '06  
hi
i like ur work n i tried to browse the we .aspx
but i get an error like
 
[No relevant source lines]
 
n i am trying to open the coding from vs2003 but it say it been made on new version
 
pls can u help me... Frown | :(
GeneralRe: does it work on vs 2003 PinmemberZeeshan Muhammad22:36 15 Jul '06  
QuestionSkins not applying at user control? PinmemberImranZubair7:01 29 Mar '06  
QuestionChange Skin of Usercontrol at runtime? PinmemberImranZubair8:29 28 Mar '06  
AnswerRe: Change Skin of Usercontrol at runtime? PinmemberZeeshan Muhammad9:29 28 Mar '06  
QuestionApply theme at User control? PinmemberImranZubair7:54 21 Mar '06  
AnswerRe: Apply theme at User control? PinmemberZeeshan Muhammad0:51 22 Mar '06  
AnswerRe: Apply theme at User control? PinmemberSHARHI6:57 2 Oct '06  
GeneralRequest object throwing NullReference Pinmemberharryteck4:57 16 Mar '06  
GeneralRe: Request object throwing NullReference PinmemberZeeshan Muhammad8:06 16 Mar '06  
GeneralRe: Request object throwing NullReference Pinmemberharryteck3:15 17 Mar '06  
GeneralRe: Request object throwing NullReference PinmemberZeeshan Muhammad9:38 20 Mar '06  
Generalfunny - i just read the"your" article in another persons book Pinmemberstellablue799:15 8 Dec '05  
GeneralRe: funny - i just read the&quot;your&quot; article in another persons book PinmemberZeeshan Muhammad8:54 10 Dec '05  
GeneralRe: funny - i just read the"your" article in another persons book Pinmemberjulesr13:26 18 Nov '06  
GeneralRe: funny - i just read the"your" article in another persons book PinmemberAkajasimafat3:12 16 Aug '07  
GeneralNice article !! PinmemberTittle Joseph18:41 12 Oct '05  
GeneralRe: Nice article !! PinmemberZeeshan Muhammad22:38 12 Oct '05  
QuestionWhat about CSS? Pinmembernmosafi6:31 11 Oct '05  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120529.1 | Last Updated 5 Oct 2005
Article Copyright 2005 by Zeeshan Muhammad
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid