这适用于现有的网站集及其下的任何新网站及其子网站但是当我创建新的网站集时,我甚至无法创建新的网站集,因为它给我的文件未找到错误作为根我的新网站集的网站无法找到主页...为什么?我是说怎么样?
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();
}
}