Click here to Skip to main content
15,885,984 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
hi frnds!

I have a database which contains different records and I want to display these record on my asp.net page but I dnt want to use grid view for this purpose. I want to display them in tile format so that in each row multiple records can be displayed and I have more than 200 records.If you have any solution then please help me to solve this problem. If you dnt understand my questin then please vist :www.royalwatches.pk[^]
Please help me!!
Thands
Posted

Google is your friend, search for : "tile control asp.net"
 
Share this answer
 
HTML
You can use RadTileList control to accomplish this.
google search : RadTileList for ASP.NET AJAX
 
Share this answer
 
v3
Its easy. Just use a StringBuilder variable to hold ur items.
Do something like

Do While rd.read()
StringBuilder_item.AppendLine(your current row info)
Loop

Use vbTab to separate fields.
Give it a go
 
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