public void clearContentOnMain() { try { using (SPSite site = new SPSite(TEAMSITEURL)) { using (SPWeb web = site.OpenWeb()) { SPFile homePage = web.GetFile("SitePages/Home.aspx"); if (homePage.Exists) { homePage.Item[SPBuiltInFieldId.WikiField] = ""; homePage.Item.Update(); } } } } catch (Exception ex) { throw new SPException("Error getting SitePages/Home.aspx " + ex.ToString()); } }
No comments:
Post a Comment