65.9K
CodeProject is changing. Read more.
Home

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

starIconstarIconstarIconstarIcon
emptyStarIcon
starIcon

4.91/5 (9 votes)

Oct 24, 2011

CPOL
viewsIcon

28452

This seems to do the job:

This seems to do the job:

<asp:textbox id="tbTest1" runat="server" onkeypress="return event.keyCode != 13;" />