On 14/03/07, johnny <[EMAIL PROTECTED]> wrote:
>
> I have an app that is for online test taking. Most online test are 30
> mins to 2hrs. I need to create count down clock from when the test is
> stared. If 30 mins test, then count down will start from 30 mins : 00
> Secs, 29 min: 59 secs and so on. How do I do this?

One simple way will be to add a simple JavaScript clock countdown in
your application. You can find many examples online, or even ready
scripts.  You have to make sure on the track the time used on the
server side though - you should register the time at which user got
the test and the time at which he submitted the answers, at the very
least. If you have multiple pages/forms, make sure you register the
time at which the user requested each page and adjust the countdown
accordingly. Do not implement this with some random script entirely on
the client side, as then it'll be very easy to cheat.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to