Browse by Tags

Related Posts

  • ListView + Linq without LinqDataSource: Editing!

    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;...
    Posted to Data Presentation Controls (Forum) by GabrielX on 01-23-2008, 12:00 AM
    Filed under: c#, linq, ListView
  • ListView - Paging issue - doesn't work from code behind

    Hello, I've got a ListView and a DataPager on my ASPX page. I bind the ListView in my code behind: EGDataContext db = new EGDataContext(); var ads = (from a in db.Ads where a.SubCategoryId == subCategoryId orderby a.PostedOn descending select a); this.lvAds.DataSource = ads; this.lvAds.DataBind(...
    Posted to Data Presentation Controls (Forum) by ambuj on 02-18-2008, 12:00 AM
    Filed under: linq, ListView
Page 1 of 1 (2 items)