Response.End Method

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.

End(
)

Parameters

This method has no parameters.

Return Values

This method has no return values.

Applies To

Response Object

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

Requirements

Client: Requires Windows XP Professional, Windows 2000 Professional, or Windows NT Workstation 4.0.

Server: Requires Windows Server 2003, Windows 2000 Server, or Windows NT Server 4.0.

Product: IIS

See Also