0

伙计们,asp中继器服务器控件上不存在数据绑定事件吗?

我只想绑定我所有的数据,最后创建一个新的 ItemTemplate 并添加它,但只是何时绑定所有数据

4

1 回答 1

6

我用它来计算集合中的总小时数。即使我把它放到 中FooterTemplate,你应该能够明白这一点。

<asp:Repeater ID="rptRecords" runat="server" OnItemDataBound="rptRecords_ItemDataBound">

protected void rptRecords_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Footer)
    {
        int totalHours = 0;

        foreach (RepeaterItem item in ((Repeater)sender).Items)
        {
            Label lblRowHours = (Label)item.FindControl("lblHours");
            if (lblRowHours != null)
                totalHours += Convert.ToInt32(lblRowHours.Text);
        }

        ((Label)e.Item.FindControl("lblHoursTotal")).Text = totalHours.ToString();
    }
}
于 2010-07-22T15:38:37.090 回答