For Zoom V6 how do i modify the search form, is it similar to V5 and as mentioned in the guide with the exception of changing search.asp to search.aspx
<form method="GET" action="search.asp">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
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
</form>
<form method="GET" action="search.asp">
<input type="text" name="zoom_query" size="20">
<input type="submit" value="Search">
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
</form>
Comment