March 14, 2007

Finding root web site

/*-----find the root website to -----------*/
SPWeb rootweb= null;
foreach (SPWeb spweb in SPContext.Current.Site.AllWebs) //this returns all sites in the site
// collection
{
if (spweb.IsRootWeb)
{
rootweb = spweb;
break;
}
}

1 comment: