Hola, zpl.
A ver si esto te marcha:
Código PHP:
<html>
<head>
<script>
function pulsar(e,frm) {
tecla=(document.all) ? e.keyCode : e.which;
if(tecla==13) {
frm.submit();
return false;
}
}
</script>
</head>
<body>
<form action="loquesea.asp">
<input type="text" onkeypress="return pulsar(event,this.form)"/>
</form>
</body>
</html>
Saludos,