Hello.
At first, can you confirm this is default Smart search box web part?
For case search does not work, can you debug its code in CMSWebParts\SmartSearch\SearchBox.ascx.cs, Search() method, and see, whether UrlHelper.Redirect(url.Trim()); line is executed?
Please let me know, which lines of code below are executed. Thank you.
if (!string.IsNullOrEmpty(txtWord.Text))
{
string url = SearchResultsPageUrl;
if (url.StartsWith("~"))
{
url = ResolveUrl(url.Trim());
}
url = UrlHelper.UpdateParameterInUrl(url, "searchtext", HttpUtility.UrlEncode(txtWord.Text));
url = UrlHelper.UpdateParameterInUrl(url, "searchmode", SearchHelper.GetSearchModeString(SearchMode));
UrlHelper.Redirect(url.Trim());
}
Best Regards,
Radek Macalik