2013-03-12 72 views
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;       
    } 
    } 
} 

感謝,

回答

0

你不能做到這一點。因爲在SharePoint主題文件夾中沒有名稱的主題是默認的。

感謝

相關問題