常用的隐藏列表或对象

时间:2010-03-12 16:47:38

标签: sharepoint sharepoint-2010

在Sharepoint中我们应该知道哪些常用的隐藏列表和对象?

3 个答案:

答案 0 :(得分:2)

using (SPSite site = new SPSite("http://localhost"))
using (SPWeb web = site.RootWeb)
    foreach (SPList list in web.Lists)
        Console.WriteLine("{0} - {1}", list.Title ?? "(noname)", list.RootFolder.ServerRelativeUrl);

我明白了:

Cache Profiles - /Cache Profiles
Content and Structure Reports - /Reports List
Converted Forms - /IWConvertedForms
Documents - /Documents
Form Templates - /FormServerTemplates
Images - /PublishingImages
List Template Gallery - /_catalogs/lt
Long Running Operation Status - /Long Running Operation Status
Master Page Gallery - /_catalogs/masterpage
Notification List - /Notification Pages
Pages - /Pages
Quick Deploy Items - /Quick Deploy Items
Relationships List - /Relationships List
Reusable Content - /ReusableContent
Site Collection Documents - /SiteCollectionDocuments
Site Collection Images - /SiteCollectionImages
Site Template Gallery - /_catalogs/wt
Style Library - /Style Library
User Information List - /_catalogs/users
Variation Labels - /Variation Labels
Web Part Gallery - /_catalogs/wp
Workflow Tasks - /WorkflowTasks

ps。:已启用发布,MOSS Enterprise

答案 1 :(得分:0)

这可能不是一个非常有用的答案,但我对Sharepoint开发的经验表明,有很多漏洞可以用非隐藏来解决,有时候甚至会记录下来的列表和对象隐藏的岩石领土正在寻找麻烦。

答案 2 :(得分:0)

相关问题