Get specific item value from the Repeater.Item.DataItem
- in ASP.Net
Retrieve specific value from the Repeater.Item.DataItem in your code. Ok so I searched around for how to get specific value from a Repeater.Item.DataItem and found a common answer:
1 | string messageSubject = ((DataRowView)e.Item.DataItem).Row["messageSubject"].ToString(); |
In an effort to cast the…