tags:

views:

23

answers:

0

Hi all,

I'm relatively new to .NET MVC (c#) development. I'm aiming to code up a simple timed quiz, which extracts a numerical value from the database, sets an individual timer for each user doing the quiz (using aforementioned extracted value), and then loads a set of questions from the database - (I'm not concerned with the data extraction from database).

Ideally I want to cycle through each of the questions, storing user responses temporarily, and once the timer finishes - post the results back to the controller.

My thoughts were to build question and input fields dynamically using a html helper class that somehow utilizes the question set from the database.

Could anyone point me in the most effective manner to achieve this - i'd ultimately like the solution to be scalable for alot of concurrent users, if possible.

Thanks for your time.