Gets or sets the text content of the System.Web.UI.WebControls.TextBox control.
Documentation for this section has not yet been entered.
Use the TextBox.Text property to specify or determine the text displayed in the System.Web.UI.WebControls.TextBox control. To limit the number of characters accepted by the control, set the TextBox.MaxLength property. If you want to prevent the text from being modified, set the TextBox.ReadOnly property.
The value of this property, when set, can be saved automatically to a resource file by using a designer tool. For more information, see System.ComponentModel.LocalizableAttribute and ASP.NET Globalization and Localization.
When the text box is rendered, the contents of this property are HTML-encoded. For example, if you set this property to "<b>Test</b>", the browser will display "<b>Test</b>", not "Test" in bold.