Pressing Enter key does not submit asp.net form
This is one of the first problem I encountered after I started working in ASP.NET. The webform does not submit or postback when I click “Enter” key on the keyboard when there is only one textbox on the form. I heard this as a bug in IE. It seem to work as it is supposed to be in FireFox.
So, the workaround for this is to add another input control of type text and make it invisible if you do not want it to, by making its width and height to be set to '0'
<input id=test1 style="WIDTH: 0px; HEIGHT: 0px" type=text >