Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using the style sheets for the gridview from this link

http://www.cyberslingers.com/Sandbox/GridView.aspx

It has various style sheet attached to the same gridview. What I want to attach the style sheet from server side to the page when user select the drop down list item

share|improve this question

2 Answers

up vote 2 down vote accepted

The simple solution is to just put runat="server" id="myname" in your tag, then you can set the value in code.

HTML

<link id="MyLink" href="~/css/default.css" rel="stylesheet" type="text/css" media="all" runat="server" />

CS

MyLink.Href = "~/css/Different.css";
share|improve this answer
But I am not getting any property like MyLink.Href in server side. I have make sure that I am using runat="server" attribute. – Chris Feb 28 '11 at 13:26
I am able to see other attributes of MyLink like innerHTML, value... but not href. – Chris Feb 28 '11 at 13:27
Are you using .Net 1.1? This property was added in version 2.0 msdn.microsoft.com/en-us/library/h119cex2(v=VS.80).aspx – Martin Brown Feb 28 '11 at 13:31
You might also need to put a prefix on the link control like this <asp:HtmlLink id="MyLink" runat="server" /> – Martin Brown Feb 28 '11 at 13:35
@Martin I am using asp.net 3.5 and I tried to put <asp:HtmlLink into aspx page, but I didn't find any control like this also it is not having any property in it. VSS is showing error. – Chris Feb 28 '11 at 13:43
show 1 more comment

You can generate a stylesheet on the server side and attach it to the page using:

HtmlGenericControl style = new HtmlGenericControl("style");
style.Attributes.Add("type", "text/css");
style.InnerText = "p { color:red; }"; 
Page.Header.Controls.Add(style);

The code above can be inside the event handler of the selectionindexchanged event of the dropdown, you can then generate all the styles you want and attach them to the page.

If you simply want to attach a reference to an external css file then you can do:

HtmlGenericControl link = new HtmlGenericControl("link");
link.Attributes.Add("rel", "stylesheet");
link.Attributes.Add("type", "text/css");
link.Attributes.Add("href", "/styles.css");
Page.Header.Controls.Add(link);
share|improve this answer
Do I have to provide the path like this ../CSS/stylesheet1.css ? – Chris Feb 28 '11 at 13:29
Wouldn't it be better to use an HtmlLink control in the second example? – Martin Brown Feb 28 '11 at 13:36
@ Martin, definitely!!! – Luis Feb 28 '11 at 23:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.