<%
' Execute the search object and get the resultsSet Results = ISYSSearch.Execute
' Get the first documentSet Document = Results(1)
' Set the highlight color to blue on yellow
Document.SetHighlightColors"#0000FF", "#FFFFFF"' Display 3 line before the the last hit
lastHit = Document.GetLineWithHitBefore(Document.LineCount + 1)
for i = lastHit-3 downto lastHit
if i > 1 then Response.Write Document.Line(i, isysStyleHTML)
next%>