how to create paging in data list use sql server in asp.net c#
how to create paging in data list use sql server in asp.net c#
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Sandeep Singh ShekhawatPosted Dec 3, 2012, 8:41 AM
http://www.c-sharpcorner.com/UploadFile/3d39b4/custom-paging-in-gridview/
In the above article replace gridview by datalist control.Like
<asp:DataList ID="grdEmployee" runat="server">
<ItemTemplate>
<%# Eval("RowNumber") %>
<%# Eval("Name") %>
<%# Eval("SALARY") %>
ItemTemplate>
asp:DataList>
Thanks
Sandeep
Satyapriya NayakPosted Dec 3, 2012, 8:15 AM
Krishna GaradPosted Dec 3, 2012, 5:14 AM