LostInMyOffice
New Member
I need to make a comparison table in HTML format, the problem is that the itemsin database comes as a columns but in comparison table it must be a rows!ExampleThe data in database looks like the following\[code\] ID Name Color Weight------------------------------- 1 Ball Red 10 2 Table Black 50 3 Chair Green 30\[/code\]And it must looks like the following in comparison table\[code\]ID 1 2 3Name Ball Table ChairColor Red Black GreenWeight 10 50 30\[/code\]I am using ASP.NET with repeater but it didn't work, Can you please help me to find the best way to do this.I must use something like repeater because the numbers of columns in the the comparison table varies.