Hola, DaniMino.
Creo que esto te servirá:
Código HTML:
<html>
<head>
<script>
function tecla(e) {
t=(document.all) ? e.keyCode : e.which;
if(t==32) return false;
}
</script>
</head>
<body>
<input type="text" onkeypress="return tecla(event)" />
</body>
</html>
Saludos,