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

A ver si esto te vale:
Código PHP:
<html>
<
head>
<
script>
function 
validar(e) {
    
tecla = (document.all)?e.keyCode:e.which;
    if(
tecla==86 && e.ctrlKey)
        return 
false;
}
</script>
</head>

<body>
<input type="password" name="textfield" onKeyDown="return validar(event)">
</body>
</html> 
Saludos,