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")%>&nbsp;<%# 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.

link|improve this question

So, in your example, you want two columns, one with 4 names (forename/surname) and one with 3? – GertArnold Oct 5 '11 at 8:35
GertArnold, please see edits – Dooie Oct 5 '11 at 8:54
What's the problem exactly? – Ufuk Hacıoğulları Oct 5 '11 at 13:47
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.