I have a repeater containing TextBoxes and LinkButtons. When I click LinkButton, the ItemCommand event fires normally. When I press Enter in any of the text fields, the form in which the repeater is located will be sent. Ideally, I would like the behavior to be that hitting the enter key in the text box performs the same action as hitting the LinkButton button, so I guess either I have to programmatically βclickβ LinkButton when the button is clicked, or I need way to run the same ItemCommand (with the appropriate command name / argument) that LinkButton does
Can someone let me know how this will be achieved? Thanks
source share