我们,在asp转发器服务器控件上不存在数据绑定事件?
我只想绑定我的所有数据,最后创建一个新的ItemTemplate并添加它,但只是在所有数据绑定的时候
答案 0 :(得分: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();
}
}