I have List of items that needs to be displayed as a table. That table need to be repeated as a two-column grid where each cell contains the same table side by side where the right side is a continuation of the right side table, like so:
a|b|c a|b|c -+-+- -+-+- 1|2|3 5|6|7 x|y|z n|m|o ..... .....
How can I achieve this?
List<Item>object to start with and the "raw" HTML code of how the final result should look like (e.g.<table><tr><td><ul><li>and so on). Right now I can't get the functional requirement right. It's too vague and ambiguous. – BalusC Sep 7 '10 at 12:56