标签:var init span sort virt bin div arc blog
protected virtual void InitGrid() { var q = _IContracts.Entities; q = Search(q); GridList.RecordCount = q.Count(); if (GridList.PageIndex >= GridList.PageCount && GridList.PageCount >= 1) { GridList.PageIndex = GridList.PageCount - 1; } q = q.SortBy(OrderField); GridList.DataSource = q.Skip(GridList.PageIndex * GridList.PageSize).Take(GridList.PageSize).ToList(); GridList.DataBind(); }
标签:var init span sort virt bin div arc blog
原文地址:http://www.cnblogs.com/shiningrise/p/6664735.html