Sharepoint: Changing a MOSS Publishing Welcome Page Programatically
CodeKeep C# Feed Novembre 13th, 2008
Description: Changing a MOSS Publishing Welcome Page Programatically
Link: http://www.codekeep.net/snippets/798280ad-0f5b-4862-8aa5-6f8b33099b40.aspx
static public void UpdateWelcomePage(SPWeb web, string p)
{
if (PublishingWeb.IsPublishingWeb(web))
{
PublishingWeb pw = PublishingWeb.GetPublishingWeb(web);
PublishingSite site = new PublishingSite(web.Site);
//Set the default page
SPFile welcomefile = web.GetFile(p);
pw.DefaultPage = welcomefile;
pw.Update();
}
}






