HTML Control ASP.Net

<%@ Page Language="vb" %>

   
      Displaying the HTTP headers collection in ASP.NET
      
         Function SayHello() As String
            SayHello = "Hello World!"
         End Function
      
   


<%
   Dim s As String
   s = SayHello()
   Response.Write(s)
%>