开发者

SPWeb.Webs, Site vs SubSite

开发者 https://www.devze.com 2022-12-24 23:58 出处:网络
I am confused between SPSite, SiteCollection, and SPWeb? So my understanding is this pseudo code: http://My_server >>> TOP Level SIte or SPWEbApplication

I am confused between SPSite, SiteCollection, and SPWeb?

So my understanding is this pseudo code:

 http://My_server >>> TOP Level SIte or SPWEbApplication
 http://My_server/My_site >>>> Site Collection or SPSite

Now a site under SPSite that will be referenced through SPWeb. So what are we gettin开发者_Python百科g when using SPWeb.Webs?

What is a Subsite?


Test code:

SPWeb mySite = SPContext.Current.Web;
SPWebCollection sites = mySite.Webs;

foreach (SPWeb subSite in sites)
{
    Response.Write(SPEncode.HtmlEncode(subSite.Title) + "<BR>");
}


The top level site collection SPSite is a container in which you have your root web SPWeb and subsites SPWebs under SPWebs - it takes a while to get used to the names.

Here's a nice diagram referenced from Microsoft:

SPWeb.Webs, Site vs SubSite

Therefore, a subsite will be any site SPWeb under the top level web site in a site collection SPSite.


The top level site is also referred to as the Root Web SPSite.RootWeb.

0

精彩评论

暂无评论...
验证码 换一张
取 消