Ver Mensaje Individual
  #2 (permalink)  
Antiguo 04/01/2003, 13:30
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola, Torus.

Supongo que te refieres a un textarea. En ese caso , creo que no hay ninguna propiedad que limite el número de líneas, pero prueba esto a ver si te vale:
Código PHP:
<html>
<
head>
<
title>Untitled Document</title>
<
script>
    var 
intro=0;
    function 
pulsar() {
        if (
event.keyCode==13) {
            
intro++;
            if (
intro>2) { return false; }
        }
    }
</script>
</head>

<body bgcolor="#FFFFFF" text="#000000">
<textarea onKeyPress="return pulsar()"></textarea>
</body>
</html> 
Saludos,