I want my site search to return all pages that meet the search criteria irrespective of the access permissions for those pages.
I've done something similar with a newslist by using the following code
MyNewsListControl.DataSource = Global.EPDataFactory.GetChildren(CurrentPage("NewsStartPage"), AccessControlList.NoAccess)
Databind()
My search is currently working by setting PageSearch.searchquery to the search string.
Can I use PageSearch.DataSource to get the same results, but use the AccessControlList.NoAccess parameter so it ignores the access permissions?
If so, how?
All suggestions gratefully received,
Regards,
Steve.