The ASP End Method is used to ensure the webserver to stop the processing of the scripts and it returns the current result. The remaining result will not be processed.
Syntax:
Response.End
Parameter Values: This method does not accept any parameter.
Example: Here we will stop the webserver to proceed farther after a specific position.
HTML
< html >
< body >
< p >
GeeksforGeeks
</ p >
<% Response.End %>
< p >
Hello Geeks
</ p >
</ body >
</ html >
|
Output:
GeeksforGeeks