0

Is it possible to "auto" next step after X seconds in asp.net wizard? It has specified time for answering question.

user1900685
  • 193
  • 1
  • 4
  • 16

1 Answers1

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.

Community
  • 1
  • 1
immutabl
  • 6,857
  • 13
  • 45
  • 76