I have a List which contains records in the following template.
Date | User | Question | Answer(Option)
For which the records will be like
02/02/2015 | Harry | What is..? | 5
02/02/2015 | Harry | How..? | 4
02/03/2015 | Alice | What is..? | 3
02/03/2015 | Alice | How..? | 1
I need a data Gridview to show records in following template.
Date | User | What is..? | How..?
02/02/2015 | Harry | 5 | 4
02/03/2015 | Alice | 3 | 1
Can anyone help me out. Is there any smart way to do this? Thanks in advance.