What type of post back occurs when I create a repeater and put a button inside of it with the CommandArgument and CommandName properties set?
I'm needing to mimic this call to the server so I can have my own custom postback and end up within the ItemCommand event of the repeater.
<asp:Repeater ID="repeaterTest" runat="server">
<ItemTemplate>
<tr onclick="DO A SPECIAL POSTBACK">
...
</tr>
</ItemTemplate>
</asp:Repeater>