Skip to main content

Posts

Showing posts with the label enter key press in asp.net textbox

Enter Key Press TextBox in ASP.Net

Today, i have an requirement to implement to  enter key press event on a log-in page in asp.net , these log-in screen is display as popup screen. I'm going to share the code sample for enter key press event code on popup. In my application display div as a popup. The .net  already have the enter key press event which are given below code  i.e. <div onkeypress= "return WebForm_FireDefaultButton(event, '<%=                            btnSignIn.ClientID %>')" > </div>  Note:  WebForm_FireDefaultButton() method is use to set default button method, provided by .net not needed to other code here. I have tested to all of browsers its working fine to me.