Welcome to Dream.In.Code
Getting Help is Easy!

Join 136,835 Programmers for FREE! Get instant access to thousands of experts, tutorials, code snippets, and more! There are 1,714 people online right now. Registration is fast and FREE... Join Now!




Adding CSS Progmatically

 
Reply to this topicStart new topic

Adding CSS Progmatically, Adding a css link to the <head> while using masterpages

5thWall
18 Sep, 2008 - 08:13 AM
Post #1

New D.I.C Head
*

Joined: 17 Sep, 2008
Posts: 43



Thanked: 3 times
My Contributions
I'm writing a site in ASP.NET 2.0 and I'm using a masterpage to give my site a consistent look. The thing is I'd like some of my content pages to have their own CSS files in addition to the global style I apply with my masterpage. I found a few tutorials that suggested using HtmlHead, but they didn't go much farther than that.

This is what I have so far:

CODE
protected void Page_Load(object sender, EventArgs e)
    {
        HtmlHead head = (HtmlHead)Page.Header;
        HtmlLink link = new HtmlLink();
        link.Attributes.Add("href", Page.ResolveClientUrl("/styles/signup.css"));
        link.Attributes.Add("type", "text/css");
        link.Attributes.Add("rel", "stylesheet");
        head.Controls.Add(link);
    }


The style doesn't appear with this, but my CSS is fine. At least it works when I link all the css files directly from the masterpage.
User is offlineProfile CardPM
+Quote Post

5thWall
RE: Adding CSS Progmatically
22 Sep, 2008 - 08:27 AM
Post #2

New D.I.C Head
*

Joined: 17 Sep, 2008
Posts: 43



Thanked: 3 times
My Contributions
Right... so I feel really stupid for not catching this, and a big part of me want's to let this thread just die without admitting it. Unfortunately I can't just let this go without a solution. I got the stupid filepath wrong.... bah. stupid.gif
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/3/08 04:04PM

Live Help!

Tutorials

Programming

Web Development

Reference Sheets

Code Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month