.NET Web后台动态加载Css、JS 文件,换肤方案

后台动态加载文件代码:

  //假设css文件:TestCss.css

        #region 动态加载css文件
        public void AddCss()
        {
            HtmlGenericControl _CssFile = new HtmlGenericControl("link");
            _CssFile.ID = "CssFile";
            _CssFile.Attributes["rel"] = "stylesheet";
            _CssFile.Attributes["type"] = "text/css";
            _CssFile.Attributes["href"] = "/Styles/TestCss.css";
            if (this.FindControl(_CssFile.ID) == null)
            {
                this.Page.Header.Controls.Add(_CssFile);
            }
        }

        #endregion 动态加载css文件

换肤方案

1) 写个类(Page_Parent.cs) 动态加载样式文件

2) 所有页面继承Page_Parent.cs类

 

Page_Parent.cs类

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI.HtmlControls;

namespace Test
{
    public class Page_Parent: System.Web.UI.Page
    {

      public Page_Parent()
        {
            this.Load += Page_Parent_Load;
            this.Error += Page_Parent_Error;
        }
        /// <summary>
        /// 捕捉未处理的页面错误
        /// </summary>
        /// <param name="sender"></param>
        /// <param name="e"></param>
        private void Page_Parent_Error(object sender, EventArgs e)
        {
            throw new NotImplementedException();
        }

        private void Page_Parent_Load(object sender, EventArgs e)
        {
            AddCss();
        }

        //假设css文件:TestCss.css

        #region 动态加载css文件
        public void AddCss()
        {
            HtmlGenericControl _CssFile = new HtmlGenericControl("link");
            _CssFile.ID = "CssFile";
            _CssFile.Attributes["rel"] = "stylesheet";
            _CssFile.Attributes["type"] = "text/css";
            _CssFile.Attributes["href"] = "/Styles/TestCss.css";
            if (this.FindControl(_CssFile.ID) == null)
            {
                this.Page.Header.Controls.Add(_CssFile);
            }
        }

        #endregion 动态加载css文件
    }
}

 

测试页面Web_Test.aspx:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Web_Test.aspx.cs" Inherits="Web.Web_Test" %>

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <p>1232131</p>
    </div>
    </form>
</body>
</html>

 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace Web
{
    public partial class Web_Test : Page_Parent
    {
        protected void Page_Load(object sender, EventArgs e)
        {

        }
    }
}

 

转载于:https://www.cnblogs.com/thirst/p/4812824.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值