K
K Viltersten
I have a repeater with an inner repeater and
i'd like to specify an OnItemCommand event
handler but instead of doing it from the ASPX
code, i prefer to shove it into the code
behind. How do i do that?
The code is as follows.
<asp:Repeater ID="Outer" runat="server">
<ItemTemplate>
<asp:Literal ID="Info" runat="server" />
<asp:Repeater ID="Inner" runat="server"
OnItemCommand="Inner_Command">
<ItemTemplate>
i'd like to specify an OnItemCommand event
handler but instead of doing it from the ASPX
code, i prefer to shove it into the code
behind. How do i do that?
The code is as follows.
<asp:Repeater ID="Outer" runat="server">
<ItemTemplate>
<asp:Literal ID="Info" runat="server" />
<asp:Repeater ID="Inner" runat="server"
OnItemCommand="Inner_Command">
<ItemTemplate>