November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
PropertyCriteria criteria = new PropertyCriteria();
criteria.IsNull = true;
criteria.Name = "WriterName";
PropertyCriteriaCollection pcc = new PropertyCriteriaCollection();
col.Add(criteria);
PageDataCollection pages;
pages = Global.EPDataFactory.FindPagesWithCriteria(Global.EPConfig.StartPage, pcc, EPiServer.Security.AccessControlList.NoAccess);
That code will return all pages where WriterName is null.