3 out of 9 rated this helpful - Rate this topic

TextBox.TextChanged Event

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

Namespace:  System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)
public event EventHandler TextChanged
<asp:TextBox OnTextChanged="EventHandler" />

Implements

IEditableTextControl.TextChanged

The TextChanged event is raised when the content of the text box changes between posts to the server.

Note Note

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 handling events, see Consuming Events.

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 the control in a label when the 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.

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

.NET Framework

Supported in: 4, 3.5, 3.0, 2.0, 1.1, 1.0

Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ