ASP End Method

response Object Reference Manual

Definition and Usage

The End method stops processing the script and returns the current result.

Note:If the Response.Buffer is set to true, this method will output the cached content. If you do not want to return any output to the user, you should first call Response.Clear.

Syntax

Response.End

Example

<html>
<body>
<p>I am writing some text. This text will never be
<%
Response.End
%>
finished! It's too late to write more!</p>
</body>
</html>

Output:

I am writing some text. This text will never be

response Object Reference Manual