Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
" maincatalog="<%# CurrentPage[ "MainCatalog" ] %>" pagelinkproperty="MainContainer" datasource="<%#GetDataSource()%>" searchquery="<%# txtKeywords.Text %>">
public PageDataCollection GetDataSource()
{
PageDataCollection colRetValue = new PageDataCollection();
PropertyCriteria pcJob = new PropertyCriteria();
pcJob.Type = PropertyDataType.String;
pcJob.Name = "PageTypeName";
pcJob.Value = "GW_Job";
pcJob.Condition = CompareCondition.Equal;
PropertyCriteriaCollection pccJob = new PropertyCriteriaCollection();
pccJob.Add(pcJob);
PageDataCollection colJob = Global.EPDataFactory.FindPagesWithCriteria(Global.EPConfig.StartPage,pccJob);
return colRetValue;
}
Thanks Danie