Hi,
I’m sorry, but I’m not aware of any "SQL Search dialog" web part property which could allow you to redirect the requests from current page to some other page where SQL Search result web part would be.
In other words, this control/web part is designed in such a way that after the search button is pressed, user is redirected to the same page. This behavior cannot be changed without source code version of Kentico
CMS since this control is built in dll files.
However, you can use searchbox control/web part on your ASPX page template to redirect to some other page where your search result web part/control will be located.
Example:
<%@ Register Src="~/CMSWebParts/Search/cmssearchbox.ascx" TagName="cmssearchbox"
TagPrefix="uc2" %>
<uc2:cmssearchbox ID="Cmssearchbox1" SearchResultsPageUrl="~/somepage.aspx" runat="server" />
If you are not satisfied with this option, you can still develop custom control or web part.
I hope this will help you.
Best regards,
Miroslav Remias.