From http://www.w3schools.com (Copyright Refsnes Data)

ASP.NET Columns Property


TextBox Control Reference Complete TextBox Control Reference

Definition and Usage

The Columns property is used to set or return the width of the TextBox control.

Syntax

<asp:TextBox Columns="num" runat="server" />
 
Attribute Description
num A number specifying the width, in characters, of the text box


Example

The following example sets the width of a TextBox control:

<form runat="server">
<asp:TextBox id="tb1" runat="server" Columns="50" />
</form>

Show example »

TextBox Control Reference Complete TextBox Control Reference

From http://www.w3schools.com (Copyright Refsnes Data)