Ending the script execution by ResponseEnd

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

plus2net.com





We use cookies to improve your browsing experience. . Learn more
HTML MySQL PHP JavaScript ASP Photoshop Articles Contact us
©2000-2025   plus2net.com   All rights reserved worldwide Privacy Policy Disclaimer