• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

【Asp.net从零开始】:使用主题(Theme)

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

主题十分简单。。。按MSDN的链接演练来练练即可http://msdn.microsoft.com/zh-cn/library/bb515247#designing_the_look_and_layout_of_a_web_site

下面写几点需要注意的:

一.APP_Theme文件夹中的不同主题包括的内容有:皮肤(skin),CSS样式,图片和其他资源

 

二.Within Asp.Net, attributes and elements take precedence in the following order:(主题选择的优先顺序,主要还是依赖于生命周期来确定的)

1.Theme attributes in the @Page directive (@Page中的Theme属性)

2.<pages Theme="themeName"> elements in the <system.Web> section of a Web.config file(Web.config 中 <pages>的Theme设置)

3.Local control attributes(本地控件自身的属性设置)

4.StyleSheetTheme attributes in the @Page directive(@Page中的StyleSheetTheme属性)

5.<pages StytleSheetTheme="themeName"> in Web.config(Web.config中<pages>的StytleSheetTheme属性)

 

三.更换皮肤时需要指明 SkinID , ImageUrl

四.编程动态更改主题的示例:

public partial class _Default : System.Web.UI.Page
{
    protected void Page_PreInit(object sender, EventArgs e)
    {
        if ((string)Session["masterName"] == null)
            MasterPageFile = "~/Master1.master";
        MasterPageFile = (string)Session["masterName"];
        
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        
        
    }


    protected void submit(object sender, EventArgs e)
    {
        if (DropDownList1.SelectedItem != null)
        {
            Session["masterName"] = DropDownList1.SelectedItem.Value.ToString();
            Response.Redirect(Request.Url.ToString());
        }
    }
}

  

 

 

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap