Hi
I get a method which can return records as a dataset,and i set the dataset as data source of a radgrid as following
The problem is that there are large amount records(more than 100000) in this dataset,so this page is very laggy. I've already read this article http://demos.telerik.com/aspnet-ajax/grid/examples/programming/custompaging/defaultcs.aspx, and i do not think it is useful for me, i just wonder if there is any solution in other ways which do not use the
Regards
Chan
I get a method which can return records as a dataset,and i set the dataset as data source of a radgrid as following
| protected void dgvUnselect_NeedDataSource(object source, GridNeedDataSourceEventArgs e) |
| { |
| UserSessionContainer usc = USCHelper.GetUserSessionContainer(Session); |
| DataSet items = Product.Product_SelectAll_ByCustomerId_And_ByProductDescription_AsDataSet(usc.Selected_CouponId); |
| this.dgvUnselect.DataSource = items; |
| } |
"ObjectDataSource",because i must get records from method Product.Product_SelectAll_ByCustomerId_And_ByProductDescription_AsDataSet(usc.Selected_CouponId)Regards
Chan