Guest User

Untitled

a guest
Jan 18th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. public enum ImagesFolder
  2. {
  3. Inicio,
  4. Solutions
  5. };
  6. [Personalizable(), WebBrowsable(), Category("Carpeta imágenes")]
  7. public ImagesFolder ImageOption
  8. {
  9. get;
  10. set;
  11. }
  12.  
  13. public Carrusel()
  14. {
  15. SPListCollection listaDocumentLibrary = SPContext.Current.Web.GetListsOfType(SPBaseType.DocumentLibrary);
  16. ArrayList listNames = new ArrayList();
  17. foreach (SPList oList in listaDocumentLibrary)
  18. {
  19. listNames.Add(oList.Title);
  20. }
  21. }
Add Comment
Please, Sign In to add comment