Skip ItemDataBound event of the repeater

674 Views Asked by At

Is there a way I can skip ItemDataBound event of the repeater like using e.Handled = true inside the event. I know RepeaterItemEventArgs does not contain a Handled property.

Actually I want to bind repeater inside a datalist's databound event due to which repeater's bound event is called twice. So on second call of the ItemDataBound event I want to skip the event.

1

There are 1 best solutions below

0
On

Store a boolean flag which will have a default value of true and inside your event you should have something like this:

if (myFlag) {
myFlag = false;
//Content of the method
}
else myFlag = true;