How to highlight searched keywords
I'd like my keyword search results to be highlighted. I have a simple (wildcard) keyword search box on my dynamic pages with results appearing on the same page. The code is:
<%
Dim rs_lostcats__MMColParam
rs_lostcats__MMColParam = "%"
If (Request.Querystring("search") <> "") Then
rs_lostcats__MMColParam = TRIM(Request.Querystring("search"))
End If
%>
.....and my form code is: <input name="search" type="text" id="search" value="<%= Request.Querystring("search") %>" />
Can someone help?
