Hi All,
This is my data:
//Multi-Dimensional Array
//QuestionID, QuestionText, Option, AnswerValue, AnswerText
//Option 1 = Radio Button
//Option 2 = CheckBox
string[,] arrMultiD = {
{ "1","Question Text 1", "1", "1", "Excelent" },
{ "1","Question Text 1", "1", "2", "Good" },
&nb ...
Go to the complete details ...