Finding out if a page is published programatically
How do you find out programatically if a page has been published. Is there a property in the PageNode object available ?
Thanks in advance,
Jon
Hi Jon,
The PageNode has a property GetLocalizedStatus that you can use.
var pn = man.GetPageNode(pageNode.Id);
var status = pn.GetLocalizedStatus();
thks !
jon