Hi,
This is a possible sollution. As far as i know this only works for IE.
Put this script between the HEAD tags:
<SCRIPT TYPE="text/javascript">
<!--
function getkey(e)
{
if (window.event) { key = window.event.keyCode }
else if (e)
key = e.which
else
key = null;
if (key == 13) return false
}
//-->
</SCRIPT>
And put this in the body
<form onKeyPress="return getkey(this,event)" action="somePage.html" action="post">
<input type="text" name="textBox1" value=""><br>
<input type="submit" name="send" value="Submit">
</form>
Hope this gets you any further!
Kristof