我需要在我们的 Episerver 内部网中显示新创建和更新页面的列表——比如每个页面的最后十个。我尝试过使用FindPagesWithCriteria
,但这不会返回任何结果。这是我尝试过的代码:
PageDataCollection recentPages;
PropertyCriteriaCollection criteria;
PropertyCriteria upperBound;
PropertyCriteria lowerBound;
criteria = new PropertyCriteriaCollection();
upperBound = new PropertyCriteria();
upperBound.Condition = CompareCondition.LessThan;
upperBound.Type = PropertyDataType.Date;
upperBound.Value = DateTime.Today.ToString();
upperBound.Name = "Created"; // Or Saved for updated pages
criteria.Add(upperBound);
lowerBound = new PropertyCriteria();
lowerBound.Condition = CompareCondition.GreaterThan;
lowerBound.Type = PropertyDataType.Date;
lowerBound.Value = DateTime.Today.AddDays(-7).ToString();
lowerBound.Name = "Created";
criteria.Add(lowerBound);
recentPages = DataFactory.Instance.FindPagesWithCriteria(PageReference.StartPage, criteria);
我也尝试过使用RecentlyChangedPagesFinder
(如此处详述) - 这会返回一些结果,但是当我尝试使用结果集构建 PageCollection 以将数据绑定到 PageList 中时,我再次没有得到任何输出。而且我看不到我可以将它用于新页面,只能用于更新页面。