I have an ASP.NET DataGrid inside of a user control (.ascx file). The OnItemCommand attribute is set to a valid event handler (in the code-behind for the control), and the the buttons in the ButtonColumn have a command set (say "DoSomething"). Clicking the buttons causes an event validation error.
If I disable event validation on the hosting page, the validation errors stop but the event handler never gets fired.
How can I get the buttons to send their commands to my event handler?
