Reputation: 11498
I have a asp:Repeater in one of my asp:GridView columns. In the template of the repeater I have a button. When that button is clicked, how can I get the OnRowCommand of the GridView to be called instead of the Repeater one?
Upvotes: 0
Views: 1134
Reputation: 43067
Have you tried a button click handler? That would allow you to avoid the GridView and Repeater command events.
Upvotes: 1