Development ASP.Net Tutorial

<%@ Page Language="VB" %>


   Accessing the MachineName Property
   
      Sub GetMachineName()
         Dim ServerName As String
         ServerName = Server.MachineName
         Response.Write("The name of the server is " & ServerName & ".
")
      End Sub
   


<% GetMachineName %>