Data collection methods

I am again obsessed with how to continue with the polling system I am working on. We have database data for questions related to the sytle matrix (rows are different questions, columns are different types of answers), where each cell should be able to control a different type of control. For this we have a database. The problem is how to dynamically display this on the screen. We need to be able to control the placement of different responses. My initial thought was to use a placeholder and write some LiteralControls into it to build the HTML for the table and control the distance that way. Can this be done using a GridView? I'm not sure which one will be easier. If there are other possibilities, I could really use the ideas. AJAX is not an option.

This is similar to the question I asked earlier, but it has more to do with the controls on the aspx page, rather than bare logic.

0


source to share


1 answer


Depends on the type of question / answer in the survey. If each question / answer is of the same type (e.g. multiple answers, or only 1 answer), then you are using a relay and a custom control. The custom control will display the question / answer appropriately, which means providing answers as a list of checkboxes (for a multiple choice answer) or radio buttons for only 1 answer.



0


source







All Articles