Is it possible to "auto" next step after X seconds in asp.net wizard? It has specified time for answering question.
Asked
Active
Viewed 112 times
0
-
"It's specified time for answering question." what does this mean..? – Vishal Suthar Jan 11 '13 at 12:01
-
I;m using wizard for a quiz. User has X seconds for answering one question. After X seconds wizard must go to the next step. – user1900685 Jan 11 '13 at 12:04
1 Answers
1
One solution might be to use a client-side script to start a timer on page load and then to redirect the page after a set amount of time if no keypress or mousemovement is detected. Take a look at Javascript's setTimeout function for the timing part. And the answer to this question for the part that detects user activity.