Domanda

Quali sono alcune liste nascoste comunemente usati e gli oggetti che dovremmo sapere di in Sharepoint?

È stato utile?

Soluzione

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);

ottengo:

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 .: Publishing abilitato, MOSS Enterprise

Altri suggerimenti

Esso non può essere una risposta terribilmente utile, ma la mia esperienza di sviluppo di SharePoint ha indicato che ci sono così tanti buchi a cadere verso il basso con e, occasionalmente, le liste non nascoste, anche documentate e gli oggetti che vagare nella il territorio roccioso di quelli nascosti è in cerca di guai.

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top