The End method causes the Web server to stop processing the script and return the current result. The remaining contents of the file are not processed.
Syntax
Response.End
Remarks
If Response.Buffer has been set to TRUE, calling Response.End will flush the buffer. If you do not want output returned to the user, you should call:
<%
Response.Clear
Response.End
%>
Applies To
See Also