Hello, currently I am working on an open source project which is a web based test system. I am using ASP.NET and C#.NET and have the following problem:
A List<QuestionProperties> lstQuestion; has this structure -
----------------------------------------------------------------------------
lstQuestion.QuestionID = 1;
lstQuestion.Question = What color does a banana usually have?
lstQuestion.TestID = 5;
----------------------------------------------------------------------------
lstQuestion.QuestionID = 2;
lstQuestion.Question = Is the world round?
lstQuestion.TestID = 5;
For every object in this list (for this example I demonstrated 2 objects in the list) I would like to create a texbox which holds the Question, as well as a select button for each of the questions displayed. This means that if I have 90 objects in the list, 90 textboxes each having a select button will appear.
...
Go to the complete details ...