Jose Saiz

Jose Saiz

  • 1.5k
  • 260
  • 102.9k

HOW To add css content to the asp.net page header

Jan 6 2016 7:31 AM
Hi, guys
 
I've done the following and worked fine
(Inserting the link of the stylesheet.css  <LINK REL=StyleSheet HREF="style.css" TYPE="text/css" MEDIA=screen>)
System.Web.UI.HtmlControls.HtmlGenericControl myStyleCss = new System.Web.UI.HtmlControls.HtmlGenericControl("link");
myStyleCss.Attributes.Add("href", "mystyle");
this.Page.Header.Controls.Add(myStyleCss);
 
This is what I would like to accomplish programatically in C# is to add the content of the css without referencing the link of the stylesheet.css as followed/
 
System.Web.UI.HtmlControls.HtmlGenericControl myStyleCss = new System.Web.UI.HtmlControls.HtmlGenericControl("style");
myStyleCss.Attributes.Add("type", "text/css");
   body {margin: 0px;} 
   input {font-size: 10pt;} 
   #div.tag {vertical-align: middle;} 
   this.Page.Header.Controls.Add(myStyleCss);
 
Any Idea How to?
 
TIA 
 
 

Answers (5)