Our client would like the search results on their search page to show in alphabetical order. How do we do this?
We have tried "title asc" in Search Results order (of the Search Results WebPart) , but it has no effect. We have also tried just "title" in the Search Results Order with no effect.
The one thing that we have been able to get to work partially is adding:
results.Tables[0].DefaultView.Sort = "title asc";
directly to the file "CMSModules/SmartSearch?Controls/SearchResults.ascx.cs" .
Unfortunately this results in only each page (of the results) being alphabetical and not the whole result set.
Any help is appreciated
Thanks
James