Click here to Skip to main content
15,908,901 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
currently working on online psychometric test module in which i want that test can also save or quit at any ques webpage at any time if the user have to leave the computer and go to do something else. even user can do this test maximum 5 times not more than that.(there is no time frame for this test)
please assist me how can i do this?????
Posted
Updated 30-Nov-11 19:11pm
Comments
Abhinav S 1-Dec-11 0:55am    
Tried anything? Dont post homework here.
Deepika 8-Dec-11 23:39pm    
thank u for ur kind reply. i have solve this myself.
Mehdi Gholam 1-Dec-11 1:12am    
EDIT -> lower cased
Please do not use uppercase as it is considered rude.

1 solution

What is the exact problem? The broad-brush & glib answer is it is like any other web app:

1. Figure out how you are going to model the questions and response sets
2. Figure out how you are going to store these, the Entity Framework is a good fit IMP
3. Figure out how you are going to drive this via Web app.

The maximum 5 tests is easy just keep a count of how many times each user has tried a particular test, and disallow a 6th.

As for allowing the user to go off and do something else you can use JavaScript to request a save if the browser is closed etc, but this is cannot be 100% so in any case you'll need a manual save or save and close button.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900