Enter Key Default Button in ASP.NET 1.1Hitting the enter key in a TextBox may sometimes cause undesired effects in ASP.NET 1.1. For example, the wrong submit button's click event may be triggered or no click event of any button is triggered.
KeyPress, KeyDown, KeyUp - The Difference Between Javascript Key EventsIn JavaScript, pressing a key triggers events which can be captured and handled. Three events are triggered when a key is pressed and released: keydown,keypress,keyup
Set Focus on Page Load / After Postback / After Submit in ASP.NET 2.0 and ASP.NET 3.5 - Setting Focus to an ASP.NET ControlIn ASP.NET 1.x, it is not possible to programmatically set focus to a web server control without using the JavaScript's focus() function. You may find the details on how to set focus to web controls in ASP.NET 1.x in one of my previous articles: Set Focus After PostBack in ASP.NET 1.x - Setting Focu...