Hi there! I'm trying to use a ListView to display a list attached to a Linq datasource. It looks something like this: 1 var ivs = from i in a.Activities 2 where i.DueDate >= DateTime.Now 3 select new { i.ActivityID, i.DueDate, i.Note }; 4 UpcomingInterviewList.DataSource = upcominginterviews;...