ASP.NET(vb.net) Response.End() - Response Object - Response.End() : 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.
ShotDev Focus:
- ASP.NET(vb.net) Response.End() - Response Object
Example
AspNetResponseEnd.aspx
<%@ Page Language="VB" %> <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) Response.write("www.ShotDev.Com 1<br>") Response.write("www.ShotDev.Com 2<br>") Response.End Response.write("www.ShotDev.Com 3<br>") End Sub </script> <html> <head> <title>ShotDev.Com Tutorial</title> </head> <body> <form id="form1" runat="server"> </form> </body> </html>
Screenshot