ASP / Access Question

JeffPell

n00b
Joined
Aug 24, 2005
Messages
49
I would like to create an online test that will be used to determine eligibility for insurance discounts. The test will be any where from 30-40 questions long. The page will be restricted access through a user authentication page.

What I would like to do is make is so when someone clicks an answer it automatically writes to an access db recording it incase the user closes their browser half way through the test. This way if the user returns it can pull the previously selected answers from the db. The test answers will not be permanent until they actually hit the “submit test” button. Is there a way to do this?

I know how to write to a db via a submit button but I am unsure how to go about writing to a db once an answer is selected.

Thanks in advance for any help.
 
There are different ways to do this. (I am assuming that all questions will be on one page?)


1.) Use Javascript and the onClick event to write the answer to a temporary table.
2.) Throw the answers into session with the onClick event...
 
Back
Top