gridview - How to Create Paging and Sorting for Custom Grid in C# -
i need create own grid have customized paging , sorting.
<my:grid id="grid" runat="server"> <columns> columns.... </columns> </my:grid>
i need create above grid such customized paging , sorting available whereever grid applied entire application.
i have answered similar question here how pagination work in asp.net(using vb.net)?. should not enable built-in pagination , sorting of asp.net grid.
your main task figure out delta of data need display on grid. put logic related sorting , pagination in db. having logic in db reduces network usage. once have desired dataset you, bind grid. hth.
Comments
Post a Comment