1

这适用于现有网站集及其下的任何新网站及其子网站但是当我创建新网站集时,我现在什至无法创建新网站集,因为它给了我文件未找到错误作为我的根网站新站点集合无法找到母版页...为什么?我是说怎么做??

using (SPWeb currentWeb = (SPWeb)properties.Feature.Parent)
            {
                using (SPSite currentSite = currentWeb.Site)
                {
                   //Set Masterpage
                    Uri masterURI = new Uri(currentSite.Url + "/_catalogs/masterpage/V4Copy.master");
                    currentWeb.CustomMasterUrl = masterURI.AbsolutePath;
                    currentWeb.MasterUrl = masterURI.AbsolutePath;
                    currentWeb.Update();
                }
            }
4

0 回答 0