Forums.Sureshkumar.net : A Perfect Place to Share Knowledge         Blogs     Games    Magazines    

"Sharing knowledge does not lessen your store, often it gets you more. Sharing plays a key role in relationships and bonding, happens in small steps and is assisted through community membership."

Go Back   SURESHKUMAR.NET FORUMS > TECHNICAL DISCUSSIONS > JAVA Technologies
Register FAQ Members List Calendar Games Blogs Search Today's Posts Mark Forums Read

   

Reply
 
LinkBack Thread Tools Rate Thread Display Modes
Old 13-07-07, 11:57 PM   #1 (permalink)
Junior Member
 
Join Date: Jul 2007
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 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  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 16-07-07, 11:58 AM   #2 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Location: Hyderabad
Posts: 2,355
Thanks: 117
Thanked 241 Times in 198 Posts
Thanks: 117
Thanked 241 Times in 198 Posts
Blog Entries: 4
Rep Power: 51 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
__________________
Give 1 cup rice to a hungry Indian just by a mouse click. No money, no form filling, no hassle... Click here for the donation.

Last edited by sk_kireeti; 16-07-07 at 12:20 PM.
sk_kireeti is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
The Following User Says Thank You to sk_kireeti For This Useful Post:
nandhini_7 (16-07-07)
Old 16-07-07, 05:26 PM   #3 (permalink)
Junior Member
 
Join Date: Jul 2007
Posts: 22
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 2 JavaLang is on a distinguished road
Re: online exam project - auto page timeout after 60 seconds

Thank U Very Much...
JavaLang is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 18-07-07, 01:56 PM   #4 (permalink)
Member
 
syed_be's Avatar
 
Join Date: Nov 2006
Age: 25
Posts: 37
Thanks: 3
Thanked 1 Times in 1 Posts
Thanks: 3
Thanked 1 Time in 1 Post
Rep Power: 3 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  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 21-02-08, 01:28 PM   #5 (permalink)
Junior Member
 
Join Date: Feb 2008
Age: 24
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 1 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  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 21-02-08, 02:31 PM   #6 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Location: Hyderabad
Posts: 2,355
Thanks: 117
Thanked 241 Times in 198 Posts
Thanks: 117
Thanked 241 Times in 198 Posts
Blog Entries: 4
Rep Power: 51 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.
__________________
Give 1 cup rice to a hungry Indian just by a mouse click. No money, no form filling, no hassle... Click here for the donation.
sk_kireeti is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
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...
 
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 21-02-08, 04:44 PM   #8 (permalink)
Super Moderator
 
sk_kireeti's Avatar
 
Join Date: Feb 2006
Location: Hyderabad
Posts: 2,355
Thanks: 117
Thanked 241 Times in 198 Posts
Thanks: 117
Thanked 241 Times in 198 Posts
Blog Entries: 4
Rep Power: 51 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
__________________
Give 1 cup rice to a hungry Indian just by a mouse click. No money, no form filling, no hassle... Click here for the donation.
sk_kireeti is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply



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

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
Some Usefull Sites source OTHERS 31 14-10-08 07:56 PM
Mega Free Download S/W Links A-Z yathish OTHERS 513 30-09-08 02:49 PM
tech links AjayKumar.Kataram Latest Tech News & Innovations 12 11-04-07 05: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 02:48 PM.





Search Engine Optimization by vBSEO 3.1.0