摘要: var data = (from o in list select new { Key = o.First, Name = o.Second, Image = o.Third }); this.gridCorner.DataSource = data; this.gridCorner.DataBind();提示 数据源不支持服务器端的数据分页. 改为下面的方式才行。 this.gridCorner... 阅读全文
posted @ 2009-07-16 11:30 NewSea 阅读(2238) 评论(5) 推荐(1) 编辑