TextBox.TextChanged Event

Definition

Occurs when the content of the text box changes between posts to the server.

C#
public event EventHandler TextChanged;

Event Type

Implements

Examples

The following example shows how you can use this event to respond to changes in the TextBox control. The code displays the contents of the Text property of a TextBox control (called TextBox1) in a label (called Label1) when the Text property is changed. User input in a Web Forms page can include potentially malicious client script. By default, the Web Forms page validates that user input does not include script or HTML elements. For more information, see How to: Protect Against Script Exploits in a Web Application by Applying HTML Encoding to Strings.

C#
protected void TextBox1_TextChanged(object sender, EventArgs e)
{
   Label1.Text = Server.HtmlEncode(TextBox1.Text);
}

Remarks

The TextChanged event is raised when the content of the text box changes between posts to the server. The event is only raised if the text is changed by the user; the event is not raised if the text is changed programmatically.

Poznámka

A TextBox control must persist some values between posts to the server for this event to work correctly. Be sure that view state is enabled for this control.

For more information about how to handle events, see Handling and Raising Events.

Applies to

Produkt Verzie
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also