久久九九国产无码高清_人人做人人澡人人人爽_日本一区二区三区中文字幕_日韩无码性爱免费

asp.net 動態(tài)引用樣式表代碼示范

時間:2024-06-14 23:58:48 ASP 我要投稿
  • 相關(guān)推薦

asp.net 動態(tài)引用樣式表代碼示范

  1. 添加CSS樣式:

  Style style = new Style();

  style.ForeColor = System.Drawing.Color.Navy;

  style.BackColor = System.Drawing.Color.LightGray;

  this.Header.StyleSheet.CreateStyleRule(style, null, "body");

  2. 鏈接外部的CSS樣式表:

  HtmlLink link = new HtmlLink();

  link.Attributes.Add("type", "text/css");

  link.Attributes.Add("rel", "stylesheet");

  link.Attributes.Add("href", "~/newstyle.css");

  this.Header.Controls.Add(link);

  方法3 aa.aspx.cs public string m_StyleSrc = string.Empty; //公共變量 ,樣式文件路徑

  private void Page_Load(object sender, System.EventArgs e) {

  m_StyleSrc = "../xxx.css"; //頁面加載時賦值 }

  }

  aa.aspx

  方法4 下面這個方法沒試過,不知是否能用

  protected void Page_Onload(object sender, EventArgs e) {

  Page.StyleSheetTheme = "../css/infomore.css";

  }

  方法5 頁面:

  后臺

  this.css.Href = "css文件路徑";

【asp.net 動態(tài)引用樣式表代碼示范】相關(guān)文章:

Java中的動態(tài)代碼編程06-27

ASP.NET連SQL7接口的源代碼06-06

關(guān)于ASP.NET使用JavaScript顯示信息提示窗口實現(xiàn)原理及代碼05-09

過濾HTML代碼08-29

CSS-層疊樣式表基礎(chǔ)教程08-10

asp.net的學(xué)習(xí)過程講解07-11

ASP.NET MVC異常處理模塊簡單教程-ASP.NET教程實例推薦07-19

引用審計依據(jù)的技巧08-28

數(shù)控編程代碼大全05-18

jquery提交按鈕的代碼07-28