Never mind. I received an email reply from David Wren and he clued me in. In one place, I had incorrect and incomplete ZOOMSTOP code. In another place, I wrapped the wrong section of ASP code!
I do have a follow-up question, though. Each time I insert a snippet of ZOOMSTOP code, the indexing-on-demand time seems to slow down. What initially took about 10 minutes is now taking about 25 -30 minutes.
---------------
Is there a way to tell Zoom Search (v6.0.100) to index only visible text? Selecting "page content" appears to trawl through source code. I don't want that.
As a fix, I tried ZOOMSTOPFOLLOW. But it did not prevent the indexing of product names contained in our "option" source code, e.g.:
<option value="" selected>Any Category</option>
<option value="2">Apples</option>
<option value="3">Artichokes</option>
<option value="4">Asparagus</option>
<option value="5">Avocados</option>
<option value="22">Bell Peppers</option>
<option value="40">Blueberries</option>
<option value="7">Broccoli</option>
See http://www.greengiantfresh.com/new/gg_search.asp?zoom_query=squash&zoom_page=3&zoom_p er_page=10&zoom_and=0&zoom_sort=0
I only want ZS to index visible HTML/ASP text on the page. As powerful and customizable as the program is, it comes up short on this issue. Any ideas?
The ASP code which generates the product table is below (ZOOMSTOPFOLLOW code inserted). Am I approaching this problem in the wrong way?
<!--ZOOMSTOP-->
<!--ZOOMSTOPFOLLOW-->
<td width="15%" align="center" valign="top">
<table width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="#FFFFFF">
<%
Do Until objRs.EOF
Response.Write "<tr><td><a href=""" & Request.ServerVariables("URL") & "?action=search&category=" & objRs("ID") & """><img src=""images/recipes/icons/cat_" & objRs("ID") & ".jpg"" width=""130"" height=""20"" border=""0"" alt=""Show Recipes for " & objRs("CATEGORY") & """></a></td></tr>"
objRs.MoveNext
Loop
%>
</table>
<div align="center">
<%If Request.Querystring("action") = "view" Then%>
</div>
<!--ZOOMRESTARTFOLLOW-->
<!--ZOOMRESTART-->
The resulting sidebar table appears as a bunch of stacked bitmapped products images:
http://www.greengiantfresh.com/new/recipes.asp
Richard Schletty
I do have a follow-up question, though. Each time I insert a snippet of ZOOMSTOP code, the indexing-on-demand time seems to slow down. What initially took about 10 minutes is now taking about 25 -30 minutes.
---------------
Is there a way to tell Zoom Search (v6.0.100) to index only visible text? Selecting "page content" appears to trawl through source code. I don't want that.
As a fix, I tried ZOOMSTOPFOLLOW. But it did not prevent the indexing of product names contained in our "option" source code, e.g.:
<option value="" selected>Any Category</option>
<option value="2">Apples</option>
<option value="3">Artichokes</option>
<option value="4">Asparagus</option>
<option value="5">Avocados</option>
<option value="22">Bell Peppers</option>
<option value="40">Blueberries</option>
<option value="7">Broccoli</option>
See http://www.greengiantfresh.com/new/gg_search.asp?zoom_query=squash&zoom_page=3&zoom_p er_page=10&zoom_and=0&zoom_sort=0
I only want ZS to index visible HTML/ASP text on the page. As powerful and customizable as the program is, it comes up short on this issue. Any ideas?
The ASP code which generates the product table is below (ZOOMSTOPFOLLOW code inserted). Am I approaching this problem in the wrong way?
<!--ZOOMSTOP-->
<!--ZOOMSTOPFOLLOW-->
<td width="15%" align="center" valign="top">
<table width="100%" border="0" cellspacing="1" cellpadding="0" bgcolor="#FFFFFF">
<%
Do Until objRs.EOF
Response.Write "<tr><td><a href=""" & Request.ServerVariables("URL") & "?action=search&category=" & objRs("ID") & """><img src=""images/recipes/icons/cat_" & objRs("ID") & ".jpg"" width=""130"" height=""20"" border=""0"" alt=""Show Recipes for " & objRs("CATEGORY") & """></a></td></tr>"
objRs.MoveNext
Loop
%>
</table>
<div align="center">
<%If Request.Querystring("action") = "view" Then%>
</div>
<!--ZOOMRESTARTFOLLOW-->
<!--ZOOMRESTART-->
The resulting sidebar table appears as a bunch of stacked bitmapped products images:
http://www.greengiantfresh.com/new/recipes.asp
Richard Schletty
Comment