Is there a way to gracefully check whether a page exists in EpiServer CMS 5 (given a pageId integer) without having to catch the PageNotFoundException
thrown by
DataFactory.Instance.GetPage(pageReference)
(EpiServer will happily create a PageReference using a non existing pageId).
Surely I can check whether a page exists without throwing an exception or doing a massive loop?
-- Lee