0
當我使用sharepoint 2010,我使用下面的代碼來獲取網站主題的顏色,但它發生異常(空主題網址) )當我得到默認(沒有主題)。請幫助我獲得默認顏色(無主題)。當我得到網站主題默認(無主題)
using (SPSite site = new SPSite(this.Context.Request.Url.ToString()))
{
using (SPWeb web = site.OpenWeb())
{
string urlTheme = ThmxTheme.GetThemeUrlForWeb(web);
using (ThmxTheme thmxTheme = ThmxTheme.Open(web.Site, urlTheme))
{
dark2 = thmxTheme.DarkColor2.DefaultColor.Name;
}
}
}
感謝,