Using the following HTML from one of your documents, I've put a search form on a page of my own design, a page which has the overall look & feel of the website.
That works fine.
But how do I get the results to also appear on that page, below the search form?
Or even on another page, so long as it's one of my own design?
I tried putting <!--ZOOMSEARCH--> below the above form, but that didn't work.
The results are always shown on the plain search.asp page which is generated by Zoom.
I don't (yet) want to modify the appearance/layout of the search results themselves. I just want the search results to appear within my own page, instead of displaying them on the search.asp page.
Possible?
TIA
- Marteco
Code:
<form method="get" action="/search-index/search.asp"> <input type="text" name="zoom_query" size="20" /> <input type="submit" value="Search" /> <small> Results per page: <select name='zoom_per_page'> <option selected>10</option> <option>20</option> <option>100</option> </select> <br /> <br /> Match: <input type="radio" name="zoom_and" value="0" checked /> any search words <input type="radio" name="zoom_and" value="1" /> all search words </small> </form>
But how do I get the results to also appear on that page, below the search form?
Or even on another page, so long as it's one of my own design?
I tried putting <!--ZOOMSEARCH--> below the above form, but that didn't work.
The results are always shown on the plain search.asp page which is generated by Zoom.
I don't (yet) want to modify the appearance/layout of the search results themselves. I just want the search results to appear within my own page, instead of displaying them on the search.asp page.
Possible?
TIA
- Marteco
Comment