简体   繁体   English

处理来自Repeater页脚的控制事件

[英]Handling control events from Repeater footer

Assuming I have the following repeater. 假设我有以下中继器。

<asp:Repeater ID="MyRepeater" runat="server" onitemdatabound="MyRepeater_ItemDataBound">
    <FooterTemplate>
        </table>
        <asp:Button ID="btnPrevious" runat="server" Text="<" />
        <asp:Label ID="lblCurrentPage" runat="server" Text="<%# PagingStatus() %>" />
        <asp:Button ID="btnNext" runat="server" Text=">" />
    </FooterTemplate>
</asp:Repeater>

How can I handle the click events from btnPrevious and btnNext ? 如何处理btnPreviousbtnNext的单击事件?

I have tried the following: 我尝试了以下方法:

protected void MyRepeater_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    Button btnPrevious = (Button)e.Item.FindControl("btnPrevious");
    Button btnNext = (Button)e.Item.FindControl("btnNext");

    if (btnPrevious != null)
        btnPrevious.Click += btnPrevious_Click;
    if (btnNext != null)
        btnNext.Click += btnNext_Click;
}

But this has failed (The event is never raised).. 但这失败了(该事件从未引发)。

You can use them in the same way you would use a normal button event handler eg: 您可以像使用普通按钮事件处理程序一样使用它们,例如:

Html: HTML:

<asp:Button ID="btnNext" runat="server" CommandArgument="<%=Id%>" onclick="Button_OnClick" Text=">" />

Code: 码:

protected void Button_OnClick(object sender, EventArgs e)
{
    Button button = sender as Button;
    if(button != null)
    {
       string commandArg = button.CommandArgument;
       //Do Work
    }
}

The you can use the command argument to find out which button was clicked. 您可以使用命令参数来找出单击了哪个按钮。
Hope this helps. 希望这可以帮助。

I would suggest using the ItemCommand event of the repeater. 我建议使用转发器的ItemCommand事件。 You still have to add the commands to your buttons though. 不过,您仍然必须将命令添加到按钮中。 Like this: 像这样:

<asp:Button ID="btnPrevious" runat="server" Text="<" CommandName="Previous"/>

protected void MyRepeater_ItemCommand(object source, RepeaterCommandEventArgs e) 
{
    if(e.CommandName.ToLower().Equals("previous")) {
        //go back
    }
    else
    {
        //go forward
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM