====== ASP.NET Page Structure ====== * directives <%@ Page Language="VB" %> * Page * Import * Register * code declaration blocks * code render blocks <% Dim Title As String = "This is generated by a code render block." %> <%= Title %> * ASP.NET server controls * ASP.NET Controls * HTML Controls * Web User Controls * Usually, an ASP.NET control must reside within a
tag in order to function correctly. * server-side comments <%-- Declare the title as string and set it --%> * literal text and HTML tags