I have a datatable which contains user details (names, addresses etc). I have a webpage which displays these user details side by side for editing & saving before moving on to the next two sets of details. What I need is some custom paging to display to the user the clients in the datatable in pairs; for example, if I have 7 rows in my data table I would have 3 pairs of name and a singleton as a type of paging navigation.
This is where I am at so far;
<asp:ListView ID="ltvClientDetailNav" runat="server" ItemPlaceholderID="ItemPlaceholderID">
<LayoutTemplate>
<ul>
<asp:PlaceHolder ID="ItemPlaceholderID" runat="server" />
</ul>
</LayoutTemplate>
<ItemTemplate>
<li>
<%# Eval("FORENAME")%> <%# Eval("SURNAME")%>
</li>
</ItemTemplate>
</asp:ListView>
Dim clientSubSet = (From clnt In clientsDetails() Select clnt!CLNT_CLIENT_ID,_
clnt!FORENAME, clnt!SURNAME).Skip((currentPage - 1) * 2).Take(2).ToList()
ltvClientDetailNav.DataSource = clientSubSet.ToList()
ltvClientDetailNav.DataBind()
Additional The page will only ever show two sets of data, the user will save once he has completed the visible clients then use the paired navigation to move to the next two clients.