Call a specific button onClick event when the enter key is pressed C#

16,082

Solution 1

You could look at the DefaultButton property of the panel control.

Solution 2

You could set the DefaultButton property on the form. Either as an attribute of the form tag in your markup DefaultButton = "btnSubmit" or using something like this in your code-behind:

Page.Form.DefaultButton = "btnSubmit"

Solution 3

Its HtmlForm.DefaultButton

Share:
16,082

Related videos on Youtube

Static Tony
Author by

Static Tony

Updated on April 16, 2022

Comments

  • Static Tony
    Static Tony about 2 years

    I'm trying to get a specific asp:button onclick event to fire when I press the enter key in a specific asp:textbox control.

    The other factor to be taken into account is that the button is within a asp:Login control template.

    I've no idea how to do this, suggestions on a postcard please.

  • kͩeͣmͮpͥ ͩ
    kͩeͣmͮpͥ ͩ over 15 years
    You don't need to do this with javascript.