ASP Net Instroduction ASP.Net Tutorial

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

    void Page_Load()
    {
        lblServerTime.Text = DateTime.Now.ToString();
    }



    First Page


    
    

    The current date and time is:
            id="lblServerTime"
        Runat="server" />
    

    


The first line contains a directive. It looks like this:
<%@ Page Language="C#" %>
The code declaration block contains all the methods used in the page. 
It contains all the page's functions and subroutines. 

    void Page_Load()
    {
        lblServerTime.Text = DateTime.Now.ToString();
    }