I use repeater in my asp.net application to display records from database. The datasource that binded to repeater are records of a datatable.
How can I get one column value for an item in repeater’s itemdatabound event?
I want to get a value of column called ‘id’. How to get it in the repeater_itemdatabound event in backend?
In the Repeaters ItemDataBound event, you can extract the object bound to the item via the
e.Item.DataItemproperty, and do: