How to prevent textbox postback when hitting Enter key in ASP.NET






4.91/5 (9 votes)
This seems to do the job:
This seems to do the job:
<asp:textbox id="tbTest1" runat="server" onkeypress="return event.keyCode != 13;" />
4.91/5 (9 votes)
This seems to do the job:
This seems to do the job:
<asp:textbox id="tbTest1" runat="server" onkeypress="return event.keyCode != 13;" />