docs:programming:asp.net:page_structure

This is an old revision of the document!


ASP.NET Page Structure

  • directives
    <%@ Page Language="VB" %>
  • code declaration blocks
    <script runat="server">
      Sub Page_Load()
        messageLabel.Text = "Hello World!"
      End Sub
    </script>
  • code render blocks
    <% Dim Title As String = "This is generated by a code render block." %>
    <%= Title %>
  • ASP.NET server controls
    <asp:Label id="messageLabel" runat="server" />
  • server-side comments
    <%-- Declare the title as string and set it --%>
  • literal text and HTML tags
  • docs/programming/asp.net/page_structure.1185904981.txt.gz
  • Last modified: 2008/08/03 00:25
  • (external edit)