Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi,
I trying to do a simple search using Examine search as per Umbraco documentation:
@if (!string.IsNullOrEmpty(Request.QueryString["query"])) { <ul> @foreach (var result in Umbraco.TypedSearch(Request.QueryString["query"])) { <li> <a href="@result.Url">@result.Name</a> </li> } </ul> }
this code works fine, but it searches the entire website, and what i want is to search for a specific parent .
How can this be done?
Thanks
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
How to use Examine search for a particular parent
Hi,
I trying to do a simple search using Examine search as per Umbraco documentation:
this code works fine, but it searches the entire website, and what i want is to search for a specific parent .
How can this be done?
Thanks
is working on a reply...