ASP Net Controls ASP.Net Tutorial

PassThrough: Displays the contents of the control without encoding.
Encode:      Displays the contents of the control after HTML encoding the content.
Transform:   Displays the contents of the control after stripping markup that is not supported by the requesting device.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


    Show Literal Mode


    
    

            id="ltlFirst"
        Mode="PassThrough"
        Text=""
        Runat="server" />
    
            id="ltlSecond"
        Mode="Encode"
        Text=""
        Runat="server" />
    
            id="ltlThird"
        Mode="Transform"
        Text=""
        Runat="server" />