Friday, January 8, 2010

ASP.NET TextBox Width compared to HTML INPUT

When converting an HTML input text box into an asp:TextBox , the HTML width will translate into Columns in ASP.NET
so in < input TYPE="TEXT" NAME="firm" VALUE="" size="60" MAXLENGTH="40" >
you will want your < asp:TextBox Columns = "60" ......

No comments:

Post a Comment