I'm new to ASP.net,C#.
I'm trying to NOT use any database and hence running into issue.
I have a small application that will generate the questions and then stores them along with answers in a 2 dimensional array. At the end, I want to display the contents in a tabular format on the same page.
When I tried to use GridView , it returns an error that the "data source is not a one dimensional array".
What is the best control that allows me to bind the 2D array as the datasource and then displays it on that page.