I am using the ListView Control with the following datasource List<MyObject>
On my listview control i have an OnItemDataBound
My question is how do get the current value of MyObject. Ie myObj[5].FirstName
protected void ItemsListViewDataBound(object sender, ListViewItemEventArgs e) { // I want to do some kind of a cast here
}