ASP.NET TextBox Control.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
The ASP.NET TextBox control is used to allow your users to input text into a field. The control is rendered in HTML as the input type text element.
Working example.
Creating the ASP.NET TextBox control.
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
The above example will be rendered as HTML with the result below (source).
<input name="ctl00$ContentPlaceHolder1$TextBox1" type="text" id="ctl00_ContentPlaceHolder1_TextBox1" />
|