you could use the following replace() vbscript function....
usage would be something like this
Replace(string_returned_for_db,string_you_are_look ing_for, "<b>" & string_you_are_looking_for & "</b>")
the result would bold the output if it was being viewed on the web.
------------ generic usage is----------------------------
Dim MyString
' A binary comparison starting at the beginning of the string.
'MyString = Replace("XXpXXPXXp", "p", "Y")
' Returns "XXYXXPXXY".
------------ generic usage is----------------------------
VBScript reference is at
http://msdn.microsoft.com/library/de...ifunctions.asp
below are some of th specifics about the replace function from the page
__________________________________________________ ____________
Replace(expression, find, replacewith[, start[, count[, compare]]])
Arguments
expression
Required. String expression containing substring to replace.
find
Required. Substring being searched for.
replacewith
Required. Replacement substring.
start
Optional. Position within expression where substring search is to begin. If omitted, 1 is assumed. Must be used in conjunction with count.
count
Optional. Number of substring substitutions to perform. If omitted, the default value is -1, which means make all possible substitutions. Must be used in conjunction with start.
compare
Optional. Numeric value indicating the kind of comparison to use when evaluating substrings. See Settings section for values. If omitted, the default value is 0, which means perform a binary comparison.