5,448,416 members and growing! (19,271 online)
Email Password   helpLost your password?
Web Development » ASP.NET » General     Intermediate

Themes and Skins in ASP.NET 2.0

By Zeeshan Muhammad

Introduction to themes and skins in ASP.NET 2.0.
SQL, C#, VC8.0, C++, .NET, Windows, WinXP, ASP.NET, SQL 2000, VS2005, SQL Server, Visual Studio, DBA, Dev

Posted: 5 Oct 2005
Updated: 5 Oct 2005
Views: 146,352
Bookmarked: 58 times
Announcements
Want a new Job?



Search    
Advanced Search
Sitemap
28 votes for this Article.
Popularity: 5.74 Rating: 3.96 out of 5
2 votes, 7.1%
1
4 votes, 14.3%
2
6 votes, 21.4%
3
3 votes, 10.7%
4
13 votes, 46.4%
5

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


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
Location: Pakistan Pakistan

Other popular ASP.NET articles:

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 25 of 35 (Total in Forum: 35) (Refresh)FirstPrevNext
Subject  Author Date 
QuestionContent Pages - ThemesmemberRaviKrishna092:29 8 Jul '08  
QuestionDynamically edit skinmemberIhorKovetsky4:09 20 Nov '07  
GeneralDynamic Themesmemberwebert19:23 26 Oct '07  
Questionhindi to english conversion of text in c#.netmemberQAZI ASIM21:42 19 Oct '07  
GeneralHow to use CSS in themesmemberAkajasimafat0:54 16 Aug '07  
AnswerRe: How to use CSS in themesmembervenkatinaidu3:35 4 Oct '07  
GeneralApply themes for AjaxControls(TabContainer&PopUp)memberkumar19830:28 7 Mar '07  
GeneralHow to apply themes for Ajax controlsmemberkumar19830:12 7 Mar '07  
GeneralApply theme programmatically to the whole websitememberClaudiu_i12:17 29 Sep '06  
GeneralTheme in master formmemberHarikrk17:06 27 Sep '06  
GeneralRe: Theme in master formmemberZeeshan Muhammad1:23 28 Sep '06  
GeneralPage_PreInitmemberfigo247716:55 16 Aug '06  
AnswerRe: Page_PreInitmembervenkatinaidu3:51 4 Oct '07  
GeneralRe: Page_PreInitmembervenkatinaidu3:58 4 Oct '07  
QuestionI want to buy themesmemberCalvin Fabre17:14 14 Aug '06  
Generaldoes it work on vs 2003memberHeart2Soul21:06 15 Jul '06  
GeneralRe: does it work on vs 2003memberZeeshan Muhammad23:36 15 Jul '06  
GeneralSkins not applying at user control?memberImranZubair8:01 29 Mar '06  
GeneralChange Skin of Usercontrol at runtime?memberImranZubair9:29 28 Mar '06  
GeneralRe: Change Skin of Usercontrol at runtime?memberZeeshan Muhammad10:29 28 Mar '06  
GeneralApply theme at User control?memberImranZubair8:54 21 Mar '06  
GeneralRe: Apply theme at User control?memberZeeshan Muhammad1:51 22 Mar '06  
AnswerRe: Apply theme at User control?memberSHARHI7:57 2 Oct '06  
GeneralRequest object throwing NullReferencememberharryteck5:57 16 Mar '06  
GeneralRe: Request object throwing NullReferencememberZeeshan Muhammad9:06 16 Mar '06  

General General