Hi all,
I'm very new to ASP.NET programming and for a project at school we have to make a products maintenance page and for the description field I was wondering how you make the text field bigger. Not width but height. I tried putting in the height here.
Code:
<asp:TextBox ID="txtDescription" CssClass="TextBoxes" style="top: 130px; left: 656px; width: 140px; height: 50px;"
runat="server"></asp:TextBox>
But when I start typing into the description textfield it doesn't start at the top. Does anyone know how to create it so it can start at the top and continue to go down as I reach the end of the width of the textfield and onto the next line of the textfield?
I know how to do this in html using cols: 10px;
I just have no idea how you would do this in asp.net
Help would be great thanks!