Page Lifecycle ASP.Net Tutorial

<%@ Page Language="vb" %>

   
      Suppressing content in ASP.NET
      
         Sub Page_Load()
            Response.Write("Hello, World!")
            Response.SuppressContent = True
            If Response.SuppressContent Then Response.Close()
         End Sub