I can't figure how to do this as I'm using GridView in Visual Studio 2012:
GridView by default is:
-------------------------
| Column 1 | Column 2 |
-------------------------
| Data 1 | Data 2 |
-------------------------
Basically header ("Column 1") is on top I want to get the following view:
-------------------------
| Column 1 | Data 1 |
-------------------------
| Column 2 | Data 2 |
-------------------------
I can't find an option in the GridView properties to do this. Is there a workaround or should I just use Form View ?