Share via


Response.End

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 is set to TRUE, calling Response.End flushes the buffer. If you do not want output returned to the user, you should first call Response.Clear.

  <% 
  Response.Clear
  Response.End
%> 

Applies To

Response Object