我想从转发器控件中获取最后一条记录的详细信息。有人可以帮忙吗?
更多详情 :
在我的数据库中有插入的天数。最后一条记录显示游览的总天数。所以我想要来自repea的最后一个记录值
最佳答案
在后面的代码中,您可以使用ItemDataBound
事件获取最后一项的详细信息:
protected void rpt_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemType == ListItemType.Item ||
e.Item.ItemType == ListItemType.AlternatingItem)
{
if (e.Item.ItemIndex == rpt.Items.Count - 1)
{
// this repeater item refers to the last record
}
}
}
关于c# - 如何从中继器控制中获取最后的记录值?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7371680/