I just purchased Zoom as it came highly recommended by some folks I highly respect. I've decided to use the ASP version within my ASP.NET site, as it is on shared hosting and getting permissions set etc. is a pain.
I have a working search page here: http://sisco.ztechsystems.net/search.asp and when I enter something in the search box, the results appear as expected.
In order to get a search box on every (other) page, I added code to my site's master page as explained in the Wrensoft FAQ's. The actual code I added is:
I get a beautiful search box on every page as expected, but when test, the page refreshes without going to the search.asp page. What have I done wrong???
~ Bruce
I have a working search page here: http://sisco.ztechsystems.net/search.asp and when I enter something in the search box, the results appear as expected.
In order to get a search box on every (other) page, I added code to my site's master page as explained in the Wrensoft FAQ's. The actual code I added is:
Code:
<form method="get" action="http://sisco.ztechsystems.net/search.asp"> <input type="text" name="zoom_query" size="15" /> <input type="submit" value="Search" /> </form>
~ Bruce
Comment