Help > Web Development > Reference > Scripting Objects > Response Object > End Method

Response.End Method

The End method instructs Perceptive Enterprise Search to stop processing the page and to return the current result.

Syntax
Response.End

Example
<%
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
 %>

Applies To
Response Object