Click here to Skip to main content
15,896,526 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I want to ask that is How to arrange List view Item in Horizontal Manner in C# only
Posted
Comments
Dylan Morley 21-Apr-11 6:21am    
Comment by AshwinMendon: can you elaborate on what basis would you like to arrange it...alphabetically or numerically
BobJanova 21-Apr-11 11:04am    
ASP.net? WinForms? WPF/Silverlight? (In the first and last it is easy since you can just modify the template.)

What have you tried so far?

1 solution

You can do it like that

<table>
        <tr>
            <asp:listview id="r" runat="server" xmlns:asp="#unknown">
                <itemtemplate>
                    <td>
                    </td>
                </itemtemplate>
            </asp:listview>
        </tr>
    </table>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900