Ending processing (VB.net) : Connections « Response « ASP.Net






Ending processing (VB.net)

<%@ Page Language="vb" %>
<html>
   <head>
      <title>Ending processing in ASP.NET</title>
      <script runat="server">
         Sub Page_Load()
            Response.Write("Hello, java2s.com!")
            Response.End()
            Message.Text = "Hello, java2s.com!"
         End Sub
      </script>
   </head>
<body>
   <asp:label id="Message" runat="server"/>
</body>
</html>
           
       








Related examples in the same category

1.Checking client connection status (VB.net)