45,000 Jobs - Get an Interview Call,  Post Your Resume Here
SURESHKUMAR.NET FORUMS
Registered Member Login:
Not a member? Register today!



Welcome to the SURESHKUMAR.NET FORUMS.

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.




online exam project - auto page timeout after 60 seconds

        

Reply
 
LinkBack Thread Tools Display Modes
Old 13-07-07, 10:57 PM   #1 (permalink)
Junior Member
 
Join Date: Jul 2007
Posts: 22
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 3 JavaLang is on a distinguished road
online exam project - auto page timeout after 60 seconds

Hello EveryOne,
i need some help regarding my project online exam
i hav a requirement that for each question student has 60 seconds of time after the time is over the page must automatically go to next page.
how to program this in my servlet.
Thankz In Advance.

JavaLang is offline Offline   Reply With Quote
The Following User Says Thank You to JavaLang For This Useful Post:
sonali.jog (19-11-09)
Old 16-07-07, 10:58 AM   #2 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Posts: 2,379
Blog Entries: 4
Thanks: 118
Thanked 319 Times in 238 Posts
Rep Power: 60 sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute
Re: online exam project

JavaLang,

This is not a server side validation. It should be validated at client side and thus you should use javascript to achieve this.

Use the following lines of code to do what you want.

Code:
function loadNextPage() 
{
    window.location.href = 'NextPage.html';
       // Any other page you wish to call
       // You can also use form.submit() method here.
}

setTimeout("loadNextPage()",60*1000);
Thanks,
Krishna

Last edited by sk_kireeti; 16-07-07 at 11:20 AM..
sk_kireeti is offline Offline   Reply With Quote
The Following 2 Users Say Thank You to sk_kireeti For This Useful Post:
nandhini_7 (16-07-07), prac87 (26-07-09)
Old 16-07-07, 04:26 PM   #3 (permalink)
Junior Member
 
Join Date: Jul 2007
Posts: 22
Thanks: 0
Thanked 1 Time in 1 Post
Rep Power: 3 JavaLang is on a distinguished road
Re: online exam project - auto page timeout after 60 seconds

Thank U Very Much...
JavaLang is offline Offline   Reply With Quote
Old 18-07-07, 12:56 PM   #4 (permalink)
Member
 
syed_be's Avatar
 
Join Date: Nov 2006
Age: 26
Posts: 37
Thanks: 3
Thanked 1 Time in 1 Post
Rep Power: 4 syed_be is on a distinguished road
Re: online exam project - auto page timeout after 60 seconds

thanks kireerti,

me too facing the problem like this but little bit different, ie.

we need to place count down timer in top of the page that coutdown time will be come from database.after completing the database time it should forword to new page....

thanks
syed
syed_be is offline Offline   Reply With Quote
Old 21-02-08, 01:28 PM   #5 (permalink)
Junior Member
 
Join Date: Feb 2008
Age: 25
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 sangeetha narayanan is on a distinguished road
Re: online exam project

please any one can help me.. i am currently doing online exam project for my mca degree course... including conducting exams,calculating marks, can anyone suggest me a solution of what can be added other than this... something new and relavant to what i am doing...please do suggest me a solution and help me.. i found that you are doing the online exam project.. can u please help me in finding the extra features or modules that can added other than administration,student module,exam,report modules.
sangeetha narayanan is offline Offline   Reply With Quote
Old 21-02-08, 02:31 PM   #6 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Posts: 2,379
Blog Entries: 4
Thanks: 118
Thanked 319 Times in 238 Posts
Rep Power: 60 sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute
Re: online exam project - auto page timeout after 60 seconds

In online exams, generally questions will cover all areas of the assessing subject. So along with general score, also give topic wise score/percentage. If no question is asked from a topic, its % should be left blank. This is also a useful feature.

If the subject demands, you can give links in a corner pointing to external sites which are related to the exam subject so that people giving exam can refer those sites for information. But if the exams are very simple, then these doesn't make sense. So better have a provision to conduct exams in either way.
sk_kireeti is offline Offline   Reply With Quote
Old 21-02-08, 03:23 PM   #7 (permalink)
Unregistered
Unregistered
 
Posts: n/a
Re: online exam project - auto page timeout after 60 seconds

can you please explain little more clearly about what u mentioned as external subjects..I am doing this project for medical transcription company...
  Reply With Quote
Old 21-02-08, 04:44 PM   #8 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Posts: 2,379
Blog Entries: 4
Thanks: 118
Thanked 319 Times in 238 Posts
Rep Power: 60 sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute sk_kireeti has a reputation beyond repute
Re: online exam project - auto page timeout after 60 seconds

They are not external subject, but external links. Let me explain it with a theoretical example for you. If the exam/question is to identify or diagnose a problem based on symptoms, then at a corner we can give link to sites which mentions which defect will have what problem. People giving exam can refer those sites before answering. Of course, if candidate don't know anything on subject, he will waste his time in searching that answer and ultimately fails. You can take this as a simulation to the US examination system when you are allowed to take text books to exam hall.

Thanks,
Krishna
sk_kireeti is offline Offline   Reply With Quote
Old 18-09-09, 09:49 AM   #9 (permalink)
Unregistered
Unregistered
 
Posts: n/a
Re: online exam project - auto page timeout after 60 seconds

Hello can anybody send the whole project of this online exam through megaupload or rapidshare to my email id rahulbhat13@gmail.com.. plzz it will be very gr8 help .. i need it urgently plzzz
  Reply With Quote
Reply

Tags
auto , exam , online , page , project , seconds , timeout


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Mega Free Download S/W Links A-Z yathish OTHERS 516 21-03-09 10:06 AM
Some Usefull Sites source OTHERS 31 14-10-08 06:56 PM
tech links AjayKumar.Kataram Latest Tech News & Innovations 12 11-04-07 04:00 PM
Project Management : Pillars sk_kireeti Testing Tools & QA 1 19-11-06 02:23 AM


All times are GMT +6.5. The time now is 11:49 AM.

More Interview Questions Here...

Content Relevant URLs by vBSEO 3.3.0