I have a ListView control and I have added a DataBound event (don't know if this is the correct one) to the control.
I'm wanting to access the data being bound to that particular ItemTemplate from this event, is that possible?
|
|
C# Solution
Why they made this so different for ListView still sort of puzzles me. There must be a reason though. |
||||
|
|
|
A little late, but I'll try to answer your question, as I had the same problem and found a solution. You have to cast Item property of the ListViewItemEventArgs to a ListViewDataItem, and then you can access the DataItem property of that object, like this:
You could then cast the dataItem object to whatever type your bound object was. This is different from how other databound controls like the repeater work, where the DataItem is a property on the event args for the DataBound method. |
|||
|
|
|
Found a workaround, I created a method to format the data how I needed and called it from the markup using:
|
|||||
|