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>
You’ll want to try and emulate the appropriate __doPostBack call. There are quite a few ways to achieve this so have a google around here is a good start http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpcongeneratingclient-sidejavascriptforpostback.asp