有没有办法可以跳过转发器的ItemDataBound事件,就像在事件中使用e.Handled = true
一样。我知道RepeaterItemEventArgs不包含Handled属性。
实际上我想在数据列表的数据绑定事件中绑定转发器,因为转发器的绑定事件被调用了两次。因此,在第二次调用ItemDataBound事件时,我想跳过该事件。
答案 0 :(得分:0)
存储一个默认值为true的布尔标志,在你的活动中你应该有这样的东西:
if (myFlag) {
myFlag = false;
//Content of the method
}
else myFlag = true;