I've got a repeater that contains TextBoxes and LinkButtons. When I click the LinkButton, the ItemCommand event fires OK. Wwhen I press Enter in any of the textboxes, the form that the repeater is inside is submitted. Ideally I'd want the behaviour to be that pressing enter in the textbox performs the same action as clicking the LinkButton does - so I figure that either I have to programmatically "click" the LinkButton when enter is pressed, or I need a way to fire the same ItemCommand (with the relevant command name/ argument) event that the LinkButton does
Could anyone give me a clue as to how this would be achieved? Thanks