ASP.NET TextMode property

Definition and usage

The TextMode property is used to set or return the behavior mode of the TextBox control.

Syntax

<asp:TextBox TextMode="mode" runat="server" />
Property Description
mode

One of the TextBoxMode enumeration values. The default value is SingleLine.

Possible values:

  • SingleLine - default. Indicates single-line input mode.
  • MultiLine - indicates multi-line input mode.
  • Password - indicates password input mode.

Example

The following example sets the text mode of the TextBox control to "Password":

<form runat="server">
<asp:TextBox id="tb1" runat="server" TextMode="Password" />
</form>

Example

Set the TextMode property of the TextBox control