We can stop ASP script execution any time by using Response.End object. This object does not require buffer to be On. We can also use response.end with any logical requirements. Here is a simple example of response end.
<%@ Language=VBScript %>
<% Option Explicit
Response.Buffer = false %>
<html><head>
<title>(Type a title for your page here)</title>
</head>
<body >
<%
Response.Write("Message No :1 Before Flush <br>")
Response.Write("Message No :2 After Flush <br>")
Response.End
Response.Write("Message No :3 After End, This line will not be executed <br>")
%>
</body>
</html>
You can see the message no 1 and message no 2 only. After this script execution will be stopped and the outputs will be posted to browser so Message No 3 will not reach the browser
← ASP Home
This article is written by plus2net.com team.
plus2net.com
✖
We use cookies to improve your browsing experience. . Learn more