asp.netgridviewpaginationcustompaging

Which ASP.NET controls support efficient paging via code behind?


I have used GridView paging with efficient paging. Which means just extract required records from database. GridView's efficient paging just works in markup. When you use code behind for controlling paging mechanism, it would not efficient any more.

Is there any ASP.NET control that support efficient paging via code behind?


Solution

  • I found one control for it: DataGrid. It works as I wanted.