ASP Net Instroduction ASP.Net Tutorial

<%@ Page Language="C#" %>
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

  
    Sample Page
    
      void Page_Load() 
      {
        messageLabel.Text = "Hello World";
      }
    
  
  
    
        
        <%-- Declare the title as string and set it --%>
        <% string Title = "This is generated by a code render block."; %>
        <%= Title %>