Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing online examination project, in that my requirement is to set one questions in one page,the maximum time limit for the question is 60 seconds, count down. how to set the time limit in jsp .can any one help me.

share|improve this question
You will need to use javascricpt. – gkamal Sep 29 '11 at 5:48
2  
Did you try something? If so, share your piece of code... – Mohamed Saligh Sep 29 '11 at 5:57

4 Answers

You can set it by using javascript.
You will find timer and its related stuff on the internet.
You have to just set the time and provide the URL. Then it will forward the page accordingly.

I hope this help you to understand the solution.

share|improve this answer

I don't know much about JSP but you can try this Javascript...

<html>
<head>
<script language="javascript">
var Timer;
var TotalSeconds;

function CreateTimer(TimerID, Time) 
{
    Timer = document.getElementById(TimerID);
    TotalSeconds = Time;
    UpdateTimer()
    window.setTimeout("Tick()", 1000);
}

function Tick() 
{
    TotalSeconds -= 1;
    if(TotalSeconds ==-1)
      {
    alert("Time Up");
    // Show alert Plus redirect any other page
      }
   else
     {
    UpdateTimer()
    window.setTimeout("Tick()", 1000);
     }
}

function UpdateTimer() {
    Timer.innerHTML = TotalSeconds;
}
</script>
</head>
<body>
<div id='timer' />
<script type="text/javascript">window.onload = CreateTimer("timer", 60);</script>
</body>
</html>

Save this as an HTML page and check if this is what you need...

Hope this helps

share|improve this answer

This can easily done using javascript.
I hope you are not trying to avoid javascript.
You can find how to do it here.

In case you are looking for something else maybe you would like to check this out

share|improve this answer

While I agree, that the time limit countdown must be done via JavaScript, there also must be a server-side time check, because JavaScript can be easily disabled. Create a time mark when student gets the question and compare it to a time mark when he posts an answer.

Hint: You may use System.currentTimeMillis() function to get current server time in milliseconds (1 sec = 1000 ms).

share|improve this answer
using the above how the time count down will be done? – Naved Sep 29 '11 at 8:44
Countdown - cannot, but you may verify, did the student really spent only 60 seconds for a question, or did he cheated via disabling JavaScript in browser. – Frozen Spider Sep 29 '11 at 9:03
If javascript is disabled, how the other question will be displayed, since it is displaying 1 question per page. This means that the page should be submitted automatically, I suppose. – Naved Sep 29 '11 at 9:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.