Hey
So while upgrading an old template to dw9 I ran into the problem of needing the created date of a page.
In DW8 I could do something like this:
int pageId = 1;
Dynamicweb.Content.Page page = Dynamicweb.Content.Page.GetPageById(pageId);
DateTime created = page.CreatedDate;
Now when I get the page object in 9 with:
Dynamicweb.Extensibility.ServiceLocator.Current.GetPageService().GetPage(pageId);
It seems it no longer have the property CreatedDate - anyone whom would be kind and assist me in finding it? :)