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

Be the first to post comment on this article :

plus2net.com




Post your comments , suggestion , error , requirements etc here .




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