Hi,

I'm using Visual Studio 2005 and i'm trying to achieve a list view / datagrid with the following structure


Code:
|     Category Heading 1      |     Category Heading 2      |
-------------------------------------------------------------
| Value 1 | Value 2 | Value 3 | Value 1 | Value 2 | Value 3 |
-------------------------------------------------------------
|       1 |       2 |       3 |       1 |       2 |       3 |
|       1 |       2 |       3 |       1 |       2 |       3 |
|       1 |       2 |       3 |       1 |       2 |       3 |
-------------------------------------------------------------
I have heard something about a gridview been able to do this, but i am using the .Net 2.0 and don't have this option available to me as far as i know.

I believe this is probably something people have had to do quite a bit before so I'm guessing theres a solution out there already for this.

Any help would be much appreciated.

Andrew