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.
Store a boolean flag which will have a default value of true and inside your event you should have something like this: