ASP Net Controls ASP.Net Tutorial

The TextMode property accepts the following three values:
SingleLine: Displays a single-line input field.
MultiLine:  Displays a multi-line input field.
Password:   Displays a single-line input field in which the text is hidden.
<%@ Page Language="C#" %>
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


    Show TextBox


    
    

            id="txtUserName"
        TextMode="SingleLine"
        Runat="server" />
    
            id="txtPassword"
        TextMode="Password"
        Runat="server" />
    
            id="txtComments"
        TextMode="MultiLine"
        Runat="server" />