/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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 } } }