The End method instructs Perceptive Enterprise Search to stop processing the page and to return the current result.
SyntaxResponse.End |
<% On Error Resume Next ' Do page processing If Err.Number <> 0 Then Response.Clear Response.Write "An error has occurred" Response.End End If On Error Goto 0 %> |