November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
FindPagesWithCriteria(Global.EPConfig.StartPage, pcCollection, AccessControlList.NoAccess)
:-)
Bård Nymoen
BEKK Consulting
PageDataCollection oPages =
Global.EPDataFactory.FindPagesWithCriteria(
parent, coll, EPiServer.Security.AccessControlList.NoAccess);
And then, afterwords I need to loop through all pages in the collection with this, to be able to retrieve data in the custom properties:
PageReference correctRef = new PageReference(page.PageLink.ID, true);
PageData reloadedPage =
Global.EPDataFactory.GetPage(
correctRef, EPiServer.Security.AccessControlList.NoAccess);
if(reloadedPage != null)
SaveProductToArray(reloadedPage);
Frank :)