We've already used the System.Web.UI.WebControls.TextBox class quite a bit; this class displays a text box in a Web form. Here is the hierarchy of this class:
Object Control WebControl TextBox
You can find the notable public properties of TextBox objects in Table 15.8 and the notable events in Table 15.9. (Note there's no table of methods here—TextBox inherits all its methods from the WebControl class.) Note that as with other Web server controls, I am not listing the notable properties, methods, and events this class inherits from the Control and WebControl classes—you can find them in Tables 15.1 to 15.5.
Event |
Means |
---|---|
TextChanged |
Occurs when the text in the text box is changed. |