White Devil
New Member
I have a task where i could use a gridview, HTML table or even a repeater control in ASP .Net (VB .Net), but unsure which control and what approach would be best.The task is to have questions but to make this very simple i'll limit this down to a mathematical scenario. Column one would contain a number.Column two would contain a number.Column three would contain a textbox for the user to enter their value into.Column four would contain the correct answer (that is value of column one plus the value of column two).Column five would verify if the answer the user entered into column three matches the correct value from column four.The way the user would approach this is as follows:There will be many rows.Column one and two are automatically generated at form load (not from a database).Column three is open for the user to enter their answer into a textbox.Column four and five are hidden, but once the user enters ALL their answers for each row then they can press a button to display column four and five.I think there are pros and cons for each control. Personally i THINK i should use a HTML table and add the textbox and hide columns accordingly. However i could be wrong and what i would like to try and avoid is to start using a control and halfway i realise its the wrong approach to use.Thanks