因为搜索过程中很有可能出现搜索的内容不存在的情况,所以我们这里一定要添加一个“假如记录集不为空则显示”的服务器行为。选中动态数据所在的那一行(<tr>...</tr>),点击“服务器行为”中的“显示区域”>“假如记录集不为空则显示”。再找到 <% end if end not search.eof or not search.bof %> 所在的地方,在前面添加几行代码,成为如下: <% else %> <tr><td>你所查询的内容不存在,请更改要害词后再查询!</td></tr> <% end if end not search.eof or not search.bof %>
<% function showbold(thefield) set objregexp= new regexp objregexp.pattern="(" & request.form("keyword") & ")" 其中的keyword要和index.htm中文本框的名字一致||| objregexp.ignorecase=true objregexp.global=true showbold=objregexp.replace(thefield,"<font color=red><b>$1</b></font>") end function %>