PC Review


Reply
Thread Tools Rate Thread

Correct answer = next page

 
 
=?Utf-8?B?SmVmZg==?=
Guest
Posts: n/a
 
      8th Feb 2005
I am trying to set up a site for my students so if they answer a question
correctly they are moved on to the next page and if they answer incorrectly
the page resets itself telling the user to try again. Is this possible and
how difficult is it?
 
Reply With Quote
 
 
 
 
Kevin Spencer
Guest
Posts: n/a
 
      8th Feb 2005
Of course it's possible. It would require some server-side programming using
ASP, PHP, or whatever is available on your server. How difficult is it?
Well, if you're not a programmer, it's impossible. If you ARE a programmer,
it's as difficult as your programming skills make it.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Jeff" <(E-Mail Removed)> wrote in message
news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
>I am trying to set up a site for my students so if they answer a question
> correctly they are moved on to the next page and if they answer
> incorrectly
> the page resets itself telling the user to try again. Is this possible
> and
> how difficult is it?



 
Reply With Quote
 
Paul M
Guest
Posts: n/a
 
      8th Feb 2005
Hi
I don't know if this is any good for what you want but it might be good for
a simple multiple choice question. with a little study of the code you
should be able to change the questions and answers.
http://javascript.internet.com/misce...ript-quiz.html
Best wishes in looking for what you need
Paul M

"Jeff" <(E-Mail Removed)> wrote in message
news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
> I am trying to set up a site for my students so if they answer a question
> correctly they are moved on to the next page and if they answer

incorrectly
> the page resets itself telling the user to try again. Is this possible

and
> how difficult is it?



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      9th Feb 2005
Here's an example.
Copy and paste " in code view" into a new page, save it as test.htm and then preview it in the
browser.

<p align="center">What is the most popular Search Engine?</p>
<p align="center">
<input type="button" style="width: 75" value="Yahoo" name="B1"
onclick="document.location='test.htm'" ><br>
<input type="button" style="width: 75" value="Google" name="B2"
onclick="document.location='http://www.google.com'"><br>
<input type="button" style="width: 75" value="MSN" name="B3"
onclick="document.location='test.htm'"><br>
<input type="button" style="width: 75" value="Alta Vista" name="B4"
onclick="document.location='test.htm'">
</p>


--
Steve Easton
Microsoft MVP FrontPage
95isalive
This site is best viewed............
........................with a computer

"Jeff" <(E-Mail Removed)> wrote in message
news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
> I am trying to set up a site for my students so if they answer a question
> correctly they are moved on to the next page and if they answer incorrectly
> the page resets itself telling the user to try again. Is this possible and
> how difficult is it?



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      9th Feb 2005
The problem with a JavaScript solution is that the students can simply view
the HTML source code to find the answers...

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Paul M" <P@doinghisbest> wrote in message
news:(E-Mail Removed)...
> Hi
> I don't know if this is any good for what you want but it might be good
> for
> a simple multiple choice question. with a little study of the code you
> should be able to change the questions and answers.
> http://javascript.internet.com/misce...ript-quiz.html
> Best wishes in looking for what you need
> Paul M
>
> "Jeff" <(E-Mail Removed)> wrote in message
> news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
>> I am trying to set up a site for my students so if they answer a question
>> correctly they are moved on to the next page and if they answer

> incorrectly
>> the page resets itself telling the user to try again. Is this possible

> and
>> how difficult is it?

>
>



 
Reply With Quote
 
Paul M
Guest
Posts: n/a
 
      9th Feb 2005
Hi
OK, This is what you say to the students , "I know this javescript exam is
50% of your pass for the year but it's not fair on the other students if you
cheat.
There, problem solved

"Steve Easton" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Here's an example.
> Copy and paste " in code view" into a new page, save it as test.htm and

then preview it in the
> browser.
>
> <p align="center">What is the most popular Search Engine?</p>
> <p align="center">
> <input type="button" style="width: 75" value="Yahoo" name="B1"
> onclick="document.location='test.htm'" ><br>
> <input type="button" style="width: 75" value="Google" name="B2"
> onclick="document.location='http://www.google.com'"><br>
> <input type="button" style="width: 75" value="MSN" name="B3"
> onclick="document.location='test.htm'"><br>
> <input type="button" style="width: 75" value="Alta Vista" name="B4"
> onclick="document.location='test.htm'">
> </p>
>
>
> --
> Steve Easton
> Microsoft MVP FrontPage
> 95isalive
> This site is best viewed............
> .......................with a computer
>
> "Jeff" <(E-Mail Removed)> wrote in message
> news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
> > I am trying to set up a site for my students so if they answer a

question
> > correctly they are moved on to the next page and if they answer

incorrectly
> > the page resets itself telling the user to try again. Is this possible

and
> > how difficult is it?

>
>



 
Reply With Quote
 
Steve Easton
Guest
Posts: n/a
 
      10th Feb 2005
Run it in a window with no toolbar and with right click disabled, or in a modal dialog
box.!!


;-)


"Kevin Spencer" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> The problem with a JavaScript solution is that the students can simply view
> the HTML source code to find the answers...
>
> --
> HTH,
>
> Kevin Spencer
> Microsoft MVP
> .Net Developer
> Neither a follower nor a lender be.
>
> "Paul M" <P@doinghisbest> wrote in message
> news:(E-Mail Removed)...
> > Hi
> > I don't know if this is any good for what you want but it might be good
> > for
> > a simple multiple choice question. with a little study of the code you
> > should be able to change the questions and answers.
> > http://javascript.internet.com/misce...ript-quiz.html
> > Best wishes in looking for what you need
> > Paul M
> >
> > "Jeff" <(E-Mail Removed)> wrote in message
> > news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
> >> I am trying to set up a site for my students so if they answer a question
> >> correctly they are moved on to the next page and if they answer

> > incorrectly
> >> the page resets itself telling the user to try again. Is this possible

> > and
> >> how difficult is it?

> >
> >

>
>



 
Reply With Quote
 
Kevin Spencer
Guest
Posts: n/a
 
      10th Feb 2005
Very funny. Steve, some of thesxe people might think you're serious!

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Neither a follower nor a lender be.

"Steve Easton" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Run it in a window with no toolbar and with right click disabled, or in a
> modal dialog
> box.!!
>
>
> ;-)
>
>
> "Kevin Spencer" <(E-Mail Removed)> wrote in message
> news:%(E-Mail Removed)...
>> The problem with a JavaScript solution is that the students can simply
>> view
>> the HTML source code to find the answers...
>>
>> --
>> HTH,
>>
>> Kevin Spencer
>> Microsoft MVP
>> .Net Developer
>> Neither a follower nor a lender be.
>>
>> "Paul M" <P@doinghisbest> wrote in message
>> news:(E-Mail Removed)...
>> > Hi
>> > I don't know if this is any good for what you want but it might be good
>> > for
>> > a simple multiple choice question. with a little study of the code you
>> > should be able to change the questions and answers.
>> > http://javascript.internet.com/misce...ript-quiz.html
>> > Best wishes in looking for what you need
>> > Paul M
>> >
>> > "Jeff" <(E-Mail Removed)> wrote in message
>> > news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
>> >> I am trying to set up a site for my students so if they answer a
>> >> question
>> >> correctly they are moved on to the next page and if they answer
>> > incorrectly
>> >> the page resets itself telling the user to try again. Is this
>> >> possible
>> > and
>> >> how difficult is it?
>> >
>> >

>>
>>

>
>



 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      10th Feb 2005
Requires a custom written application using ASP, ASP.net, PHP, CFM, etc. and a database.

Here is a example of the concept:
http://www.ecom-data.com/Examples/TriviaGames

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)
http://www.ycoln-resources.com
FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
To assist you in getting the best answers for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp

"Jeff" <(E-Mail Removed)> wrote in message
news:52DA74C0-A757-427F-A091-(E-Mail Removed)...
>I am trying to set up a site for my students so if they answer a question
> correctly they are moved on to the next page and if they answer incorrectly
> the page resets itself telling the user to try again. Is this possible and
> how difficult is it?



 
Reply With Quote
 
 
 
Reply

Thread Tools
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 Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: THE ONLY CORRECT ANSWER - AS USUAL FROM S.S. Blanche Starinski Windows Vista General Discussion 0 6th Jan 2010 11:23 PM
The correct answer is Preschool Mike Microsoft Powerpoint 3 29th Jul 2009 09:05 PM
Getting the correct SUM answer txheart Microsoft Excel Misc 1 18th Apr 2008 07:05 PM
Not Returning Correct Answer GVR_Mike Microsoft Access Forms 5 3rd Oct 2007 10:38 PM
Finding Correct Answer =?Utf-8?B?Y2FsZG9n?= Microsoft Excel Worksheet Functions 0 25th Nov 2006 07:58 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:41 AM.