Click here to Skip to main content
15,878,748 members
Articles / Web Development / CSS

CSS Variables

Rate me:
Please Sign up or sign in to vote.
2.83/5 (20 votes)
17 Dec 2006CDDL2 min read 139.1K   449   32   47
Using HTTPHandlers to support dynamic CSS.

Introduction

Users want flexibility in the websites they visit; they want to define what content they see, and how it is shown. Website developers want to give them that ability, but need to balance it against maintainability. Using Cascading Style Sheets (CSS), the developer can specify certain base layouts, or themes, and allow the user to change these at runtime. However, creating separate files for all possibilities is just not reasonable. A better way would be to change certain CSS values at runtime based on settings specified by the user, yet CSS does not have variables that can be evaluated at runtime.

Solution

To get around the problem of not having variables in CSS, one must read the CSS file and replace the given values at runtime. The good news is that in ASP.NET, this is a relatively easy task.

CSS
body
{
   background-color:#BG_COLOR#
}

Generic HTTPHandler

Using Visual Studio 2005, you can easily add a Generic HTTPHandler.

Add New Item

This will create an ashx file and add it to your project. This file implements the IHTTPHandler interface, with its one and only method, ProcessRequest, and includes the WebHandler page directive.

ASP.NET
<%@ WebHandler Language="C#" Class="Handler" %>

The .NET Framework treats these files as HTPPHandlers without the need to register them in the <httpHandlers> section of the web.config file.

ASP.NET
<%@ WebHandler Language="C#" Class="CSSHandler" %>

The code-behind:

C#
using System;
using System.Web;
using System.Configuration;

public class CSSHandler : IHttpHandler 
{
    public void ProcessRequest (HttpContext context) 
    {
        context.Response.ContentType = "text/css";
        
        // Get the file from the query stirng
        string File = context.Request.QueryString["file"];
        
        // Find the actual path
        string Path = context.Server.MapPath(File);
        
        //Limit to only css files
        if(System.IO.Path.GetExtension(Path) != ".css")
           context.Response.End();

        //Make sure file exists
        if(!System.IO.File.Exists(Path))
           context.Response.End();

        // Open the file, read the contents and replace the variables
        using( System.IO.StreamReader css = new System.IO.StreamReader(Path) )
        {
            string CSS = css.ReadToEnd();
            CSS = CSS.Replace("#BG_COLOR#", 
                      ConfigurationManager.AppSettings["BGColor"]);
            context.Response.Write(CSS);
        }
    }
    
    public bool IsReusable 
    {
        get { return false; }
    }
}

As we can see, the ProcessRequest method simply opens the file specified on the query string, reads it, and uses string replace to add the value for the variable that has been specified in the web.config file. Not much to it.

XML
<link rel="Stylesheet" href="CSSHandler.ashx?file=default.css" />

<appSettings>
   <add key="BGColor" value="Red"/>
</appSettings>

Limitations

Using a generic webhandler has a disadvantage in that you must specify the style sheet to parse. This breaks down when using ASP.NET 2.0 Themes, however, because any stylesheet placed in the theme folder will automatically be linked, no need to manually add it to your web pages. Although you can manually add each one, it isn't a very maintainable model.

Better solution

A better solution is to create a custom HTTPHandler and add it to the httpHandlers section of the web.config file.

XML
<httpHandlers>
    <add verb="*" path="*.css" 
       type="CustomHandler.CSSHandler, CustomHandler"/>
</httpHandlers>

The code:

C#
public class CSSHandler : IHttpHandler 
{
#region IHttpHandler Members

    public bool IsReusable
    {
        get { return false; }
    }

    public void ProcessRequest(System.Web.HttpContext context)
    {
        // Get the physical path of the file being processed
        string File = context.Request.PhysicalPath;

        // Open the file, read the contents and replace the variables
        using(System.IO.StreamReader reader = new System.IO.StreamReader(File))
        {
            string CSS = reader.ReadToEnd();
            CSS = CSS.Replace("#BG_COLOR#", 
                      ConfigurationManager.AppSettings["BGColor"]);
            context.Response.Write(CSS);
        }
    }

    #endregion
}

The only difference from the previous example is that the CSS file to parse is obtained from the context.Request.PhysicalPath property. Since the handler is registered for CSS files, it will process any stylesheet file regardless of its location in the web project.

Conclusion

This article has hopefully shown a method that can be used to provide dynamic settings to an otherwise static file and give website users a more positive experience.

License

This article, along with any associated source code and files, is licensed under The Common Development and Distribution License (CDDL)



Comments and Discussions

 
GeneralMy vote of 1 Pin
spdev@201228-Feb-12 8:00
spdev@201228-Feb-12 8:00 
GeneralRe: My vote of 1 Pin
Not Active28-Feb-12 9:42
mentorNot Active28-Feb-12 9:42 
GeneralMy vote of 1 Pin
Carl Jung10-Apr-11 10:50
Carl Jung10-Apr-11 10:50 
GeneralRe: My vote of 1 Pin
Not Active28-Feb-12 9:43
mentorNot Active28-Feb-12 9:43 
GeneralCool concept but... [modified] Pin
HoyaSaxa936-Oct-10 0:25
HoyaSaxa936-Oct-10 0:25 
GeneralRe: Cool concept but... Pin
Not Active6-Oct-10 2:27
mentorNot Active6-Oct-10 2:27 
Generalan excellent contribution, thanks ! Pin
BillWoodruff7-Jun-10 16:58
professionalBillWoodruff7-Jun-10 16:58 
GeneralMy vote of 1 Pin
William Dyson9-Apr-10 6:07
William Dyson9-Apr-10 6:07 
GeneralRe: My vote of 1 Pin
Not Active7-Jun-10 16:27
mentorNot Active7-Jun-10 16:27 
GeneralNot working in Firefox Pin
pavithru17-Feb-10 3:14
pavithru17-Feb-10 3:14 
GeneralRe: Not working in Firefox Pin
Not Active17-Feb-10 11:40
mentorNot Active17-Feb-10 11:40 
GeneralMy vote of 2 Pin
DanWalker29-Dec-09 9:13
DanWalker29-Dec-09 9:13 
GeneralRe: My vote of 2 Pin
Not Active17-Feb-10 11:37
mentorNot Active17-Feb-10 11:37 
Generalperformance Pin
liorgold31-Jul-07 22:25
liorgold31-Jul-07 22:25 
GeneralRe: performance Pin
Not Active1-Aug-07 1:43
mentorNot Active1-Aug-07 1:43 
GeneralRe: performance Pin
Evyatar Ben-Shitrit1-Aug-07 8:24
Evyatar Ben-Shitrit1-Aug-07 8:24 
Questionare there other versions?? Pin
nilskyone18-Jun-07 23:13
nilskyone18-Jun-07 23:13 
AnswerRe: are there other versions?? Pin
Not Active19-Jun-07 2:03
mentorNot Active19-Jun-07 2:03 
GeneralRe: are there other versions?? Pin
nilskyone9-Jul-07 14:37
nilskyone9-Jul-07 14:37 
GeneralRe: are there other versions?? Pin
molebrain13-Jul-07 3:52
molebrain13-Jul-07 3:52 
Questionthis is working for localhost but not for online.. Pin
rakesh_csit24-May-07 18:54
rakesh_csit24-May-07 18:54 
AnswerRe: this is working for localhost but not for online.. Pin
Not Active25-May-07 2:12
mentorNot Active25-May-07 2:12 
QuestionNot working for me Pin
Saumin24-May-07 12:05
Saumin24-May-07 12:05 
hi,
i downloaded your example, and it works on my machine, but when i implement exactly the same code in my web app, the httphandler code doesnt get hit. I have no idea where i am going wrong. Any pointers?

Thanks!
saumin
AnswerRe: Not working for me Pin
Not Active24-May-07 15:46
mentorNot Active24-May-07 15:46 
GeneralRe: Not working for me Pin
Saumin25-May-07 4:52
Saumin25-May-07 4:52 

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.