textbox control properties?

  • Thread starter Thread starter sean
  • Start date Start date
S

sean

Hi There,

I am trying to make my textbox control look like a <textarea> html form
object, can someone tell me how to do this?

Sean - thanks in advance for your answer

<asp:TextBox id="txtModelDescription1" width="250" maxlength= "250"
runat="server" />
 
Sean,
Set the TextMode property to MultiLine, and it will be rendered as a
text area.

Best regards,
Jeffrey Palermo
 
Back
Top