ASP Net Controls ASP.Net Tutorial

The Literal control is similar to the Label control. 
However, unlike the Label control, the Literal control does not render its content inside of a  tag.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    void Page_Load()
    {
        ltlTitle.Text = DateTime.Now.ToString("D");
    }



    <asp:Literal id="ltlTitle" Runat="Server" />


    
    

    

Look in the title bar