惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
量子位
小众软件
小众软件
The Cloudflare Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
大猫的无限游戏
大猫的无限游戏
C
Check Point Blog
G
Google Developers Blog
博客园 - 叶小钗
H
Help Net Security
Jina AI
Jina AI
Y
Y Combinator Blog
Last Week in AI
Last Week in AI
GbyAI
GbyAI
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Apple Machine Learning Research
Apple Machine Learning Research
MyScale Blog
MyScale Blog
T
Tailwind CSS Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Vercel News
Vercel News

博客园 - Andy

Delphi Access violations 问题的解决 Coolite Destop 动态生成菜单 - Andy ext js window的 AnimateTarget属性 - Andy ext 从头开始 extjs 控件 触发事件 的几种方式 ext js gridpanel绑定到动态生成的store - Andy coolite的一点东西 - Andy - 博客园 Coolite 中 遍历formlayout中的anchors中的anchor 并找到其中的TextField coolite SqlDataSource - Andy - 博客园 coolite 更新 删除 修改 - Andy Coolite toolkit 数据传递 ExtStore Coolite服务端方法调用与Web.Config配置 - Andy - 博客园 Coolite 交流(转)含简单配置说明 Coolite 开发心得 coolite 分页(含Bug修复方法) coolite 为你要删除的记录增加删除验证 - Andy - 博客园 Coolite AjaxMethod - Andy - 博客园 Coolite.Ext.Web命名空间 Coolite ComboBox绑定方式 Coolite TreePanel的数据绑定操作
Coolite 换肤
Andy · 2009-11-01 · via 博客园 - Andy
如何换肤?
方法有很多:
方法一:在Aspx文件的Head标签内加入
<head runat="server" lang="zh-cn">
    <title>无标题页</title>
    <cool:ScriptContainer ID="ScriptContainer1" runat="server">
    </cool:ScriptContainer>
    <link href="对应皮肤CSS文件的相应路径" rel="stylesheet" type="text/css" />
</head>
方法二:在后置代码中设置:
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        Coolite.Web.UI.ScriptManager.RegisterSessionTheme(Coolite.Web.UI.Theme.Gray);
    }
</script>
或者
<script runat="server">
    protected void Page_Load(object sender, EventArgs e)
    {
        HttpContext.Current.Session["Coolite.Theme"] = Coolite.Web.UI.Theme.Gray;
    }
</script>
方法三:使用配置文件:

1<?xml version="1.0"?>
2
3<configuration>
4    <configSections>
5      <section name="coolite" type="Coolite.Web.UI.GlobalConfig"/>
6    </configSections>
7  <!-- COOLITE GLOBAL CONFIGURATION ATTRIBUTES -->
8  <!-- cleanResourceUrl = true|false
9        The Coolite controls can clean up the autogenerate WebResource Url so they look presentable.
10        Default is true -->
11  <!-- gzip = true|false
12        Whether to automatically render scripts with gzip compression.
13        Default is true. -->
14  <!-- scriptAdapter = Ext, jQuery, Prototype, YUI
15        Which script adapter to use.
16        Default is "Ext" -->
17  <!-- renderScripts = true|false
18        Whether to have the coolite controls output the required JavaScript includes or not.
19        Gives developer option of manually including required <script> files.
20        Default is true -->
21  <!-- renderStyles = true|false
22        Whether to have the coolite controls output the required StyleSheet includes or not.
23        Gives developer option of manually including required <link>/<style> files.
24        Default is true -->
25  <!-- scriptMode = Release, Debug
26        Whether to include the Release (condensed) or Debug (with documentation) JavaScript files
27        Default is "release" -->
28  <!-- theme = Default, Gray
29        Which embedded theme to use.
30        Default is "Default" -->
31  <coolite
32    cleanResourceUrl="true"
33     gzip="true"
34     scriptAdapter="Ext"
35     renderScripts="true"
36     renderStyles="true"
37     scriptMode="Release"
38     theme="Gray"
39    />
40</configuration>