如何在c#.net中的嵌套中继器控件中激发ItemCommand参数子中继器

本文关键字:中继器 控件 ItemCommand 参数 嵌套 net | 更新日期: 2023-09-27 18:25:55

这是我的嵌套中继器的aspx页面代码。。

<asp:Repeater ID="repAccordian" runat="server" OnItemDataBound="repAccordian_ItemDataBound" onitemcommand="repAccordian_ItemCommand">
    <ItemTemplate>
    <%#Eval("TopicName")%>
    <asp:Label ID="lbltopicid" runat="server" Visible="false" Text='<%#Eval("TopicID")%>' </asp:Label>
    <div>
    <asp:Repeater ID="repsubtopic" runat="server"><ItemTemplate>
    <%#Eval("SubTopicName")%>                              
    <a href='' class='click'>
    <asp:Label ID="lblView" CommandName="View" CommandArgument='<%# Eval("SubTopicID") %>'
     runat="server" Text="View" /></a>
    </ItemTemplate>
    </asp:Repeater>
    </div>
    </ItemTemplate>
    </asp:Repeater>

在子中继器中单击视图时,我需要激发ItemCommand参数(repsubtopic)。。请给我解决这个问题的建议。

如何在c#.net中的嵌套中继器控件中激发ItemCommand参数子中继器

正如@Tim建议的

<asp:Repeater ID="repsubtopic" runat="server" 
      onitemcommand="repsubtopic_ItemCommand">

并在代码背后定义CCD_ 1。