Ecco come abilitare, in SharePoint 2007 (WSS3 - MOSS) , l'opzione Display the same navigation items as the parent site (Visualizza gli stessi elementi della struttura di spostamento del sito padre) via codice:

C#

string url = "http://sharepoint2007/sites/P1/P2/P3/";

using(SPSite site = new SPSite(url)){
  using (SPWeb web= site.OpenWeb())
  {
    web.Navigation.UseShared = true;  //eredita la navigation dal padre
  }
}
Tags:
C#236 SharePoint498 SharePoint 2007218
Potrebbe interessarti anche: