Published in: C#
protected void rptMyRepeater_ItemDataBound(Object Sender, RepeaterItemEventArgs e) { if (this.showEmployerControls) { if (e.Item.ItemType == ListItemType.Item || e.Item.ItemType == ListItemType.AlternatingItem) { MyCustomClass resultItem = (MyCustomClass)e.Item.DataItem; // do stuff here } } }
You need to login to post a comment.
