Hi,
I have an index that searches through a folder and various subfolders starting at
\\bwbsrv01\users\intranets\bwbnet\docs\root
This is running IIS and is accessed by viewing http://bwbnet/docs
In the folder 'root' there is a folder called 'Precedents' and I want anything in this folder to be in a category called 'Precedents'. For the pattern that I want to match should I be entering '\docs\root\precedents' or 'http://bwbnet/docs/root/precdents' or something else entirely?
For the search form do I have to have a radio button or tick box? Tick boxes would be better I think as eventually I may have more than one category and would want the user to be able to select multiple categories. At the moment I have a custom search form that looks like this:
<body topmargin="3" leftmargin="3" bgcolor="FFFFCC">
<form method="get" action="search/search.asp" target="main">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr><td rowspan="2"> </td>
<td align="right">
<input type="text" name="zoom_query" size="20" />
<input type="submit" value="Search" />
<font face="verdana" size="2">Results per page:</font> <select name='zoom_per_page' style="font-family: Verdana; font-size: 10px">
<option selected="selected">10</option>
<option >20</option>
<option >100</option>
</select></td></tr>
<tr><td align="right">
<font face="verdana" size="1">
Match: <input type="radio" name="zoom_and" value="0" checked="checked">
any search words <input type="radio" name="zoom_and" value="1">
all search words
</font>
</td>
</tr>
</table>
I know how to add a tick box to an HTML form but am not sure how to put it in in a way that will talk to the zoom search results. Sorry if this is a really basic question I am struggling to get hang of it!
Thanks very much
Ed
I have an index that searches through a folder and various subfolders starting at
\\bwbsrv01\users\intranets\bwbnet\docs\root
This is running IIS and is accessed by viewing http://bwbnet/docs
In the folder 'root' there is a folder called 'Precedents' and I want anything in this folder to be in a category called 'Precedents'. For the pattern that I want to match should I be entering '\docs\root\precedents' or 'http://bwbnet/docs/root/precdents' or something else entirely?
For the search form do I have to have a radio button or tick box? Tick boxes would be better I think as eventually I may have more than one category and would want the user to be able to select multiple categories. At the moment I have a custom search form that looks like this:
<body topmargin="3" leftmargin="3" bgcolor="FFFFCC">
<form method="get" action="search/search.asp" target="main">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr><td rowspan="2"> </td>
<td align="right">
<input type="text" name="zoom_query" size="20" />
<input type="submit" value="Search" />
<font face="verdana" size="2">Results per page:</font> <select name='zoom_per_page' style="font-family: Verdana; font-size: 10px">
<option selected="selected">10</option>
<option >20</option>
<option >100</option>
</select></td></tr>
<tr><td align="right">
<font face="verdana" size="1">
Match: <input type="radio" name="zoom_and" value="0" checked="checked">
any search words <input type="radio" name="zoom_and" value="1">
all search words
</font>
</td>
</tr>
</table>
I know how to add a tick box to an HTML form but am not sure how to put it in in a way that will talk to the zoom search results. Sorry if this is a really basic question I am struggling to get hang of it!
Thanks very much
Ed
Comment