Demonstrates executing a Query Within. This allows you to narrow a previously executed search by providing new search terms.
<%
set isys = Server.CreateObject("ISYS.ISYSAsp")
set search = isys.NewSearch
search.QuerySource = Request("SearchID")
search.QueryText = Request("Query")
set results = search.Execute
%>
|