Hola, edwinandlozano.
Prueba esto:
Código PHP:
<html>
<head>
<script>
function validar(e) {
tecla=(document.all) ? e.keyCode : e.which;
document.getElementById('pru').value=tecla-32;
if (tecla>96 && tecla<123)
e.keyCode=tecla-32;
}
</script>
</head>
<body>
<input type="text" onkeypress="validar(event)"/>
</body>
</html>
Lo que no he conseguido es que funcione en Netscape. Si alguien sabre hacerlo me gustaría saber como.
Saludos,