
18/03/2008, 17:52
|
 | Colaborador | | Fecha de Ingreso: septiembre-2007 Ubicación: San Francisco, United States
Mensajes: 3.858
Antigüedad: 17 años, 6 meses Puntos: 87 | |
Re: textarea de un formulario (ASP.Net) Porque no usar un asp:TextBox asi
TextBox vox = new TextBox();
vox.MaxLength = 1000;
vox.TextMode = TextBoxMode.MultiLine;
y con eso bastara |