Programmatisch Ophalen Lijst van documentbibliotheken

Het volgende stukje code wordt gebruikt om de lijst van documentbibliotheken op te halen.

SPWeb _web = SPContext.Current.Web;


SPListCollection ListColl = _web.Lists;


foreach (SPList _lst in ListColl)

{


als (_lst.BaseTemplate == SPListTemplateType.DocumentLibrary)

{

LibList.Items.Add(_lst.Title);

}

}

BaseTemplateType kan worden gebruikt om het type van de lijst te identificeren.

Laat een reactie achter

U kunt gebruik maken deze HTML-tags

<a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>