Epi 4.61 and .Net 2.0
I need to list all children to the current page (only one level) but the "PagePublishedStatus.Ignore" don't seems to do the trick.
Need to do it all in the code behind as I check the pages when activate the Edit tab.
The pages are saved but not published... I can get the list when they have been published.
Tried:
ExplorerTree pList = new ExplorerTree();
pList.PublishedStatus = PagePublishedStatus.Ignore;
pList.ExpandAll = true;
pList.EnableVisibleInMenu = false;
pList.ShowRootPage = false;
pList.PageLink = CurrentPage.PageLink;
pList.DataBind();
amongs other solutions, they all end up displaying "0" count...
Cheers ears,
Dan Lindeberg, Skanska IT Solutions
ExplorerTree pList = new ExplorerTree(); pList.PublishedStatus = PagePublishedStatus.Ignore; pList.ExpandAll = true; pList.EnableVisibleInMenu = false; pList.ShowRootPage = false; pList.PageLink = CurrentPage.PageLink; pList.DataBind();
amongs other solutions, they all end up displaying "0" count... Cheers ears, Dan Lindeberg, Skanska IT Solutions