PC Review


Reply
Thread Tools Rate Thread

Confirmation Page Results

 
 
norfeem
Guest
Posts: n/a
 
      23rd Jul 2004
Is it possible to control the default confirmation page.

I would like the results to display like

q1
q2
q3
q4
q5

the results are displaying like
q2
q5
q3
q1
q4

I named to fields Q01, Q02 etc I set the tab order and
still the results are displaying q2, q5, q3, q1, q4

I checked the form properties and the saved values are
sent in proper order. Am I missing a check box somewhere.

Thanks in advance.
Erik



 
Reply With Quote
 
 
 
 
Thomas A. Rowe
Guest
Posts: n/a
 
      23rd Jul 2004
No. If you are using the textarea fields, they will always appear last when using the FP Form
Handler.

--
==============================================
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

"norfeem" <(E-Mail Removed)> wrote in message
news:056501c470e1$9a916970$(E-Mail Removed)...
> Is it possible to control the default confirmation page.
>
> I would like the results to display like
>
> q1
> q2
> q3
> q4
> q5
>
> the results are displaying like
> q2
> q5
> q3
> q1
> q4
>
> I named to fields Q01, Q02 etc I set the tab order and
> still the results are displaying q2, q5, q3, q1, q4
>
> I checked the form properties and the saved values are
> sent in proper order. Am I missing a check box somewhere.
>
> Thanks in advance.
> Erik
>
>
>



 
Reply With Quote
 
norfeem
Guest
Posts: n/a
 
      23rd Jul 2004
I am using radio buttons. see a few rows of the code
below, i included code from the form and the code from the
results page.

The user will have 20 questions and select one of 4
answers for each questions

<tr>
<td align="left" width="161">Q02:</td>
<td align="left" width="500">
<font color="#FF0000">
<input type="radio" value="5" name="Q02"
tabindex="02" class="box"><input type="radio" value="3"
name="Q02" tabindex="02" class="box" size="20"><input
type="radio" value="0" name="Q02" tabindex="02"
class="box" size="20"><input type="radio" value="-1"
name="Q02" tabindex="02" class="box"></font></td>
</tr>
<tr>
<td align="left" width="161">Q03:</td>
<td align="left" width="500">
<font color="#FF0000">
<input type="radio" value="5" name="Q03"
tabindex="03" class="box"><input type="radio" value="3"
name="Q03" tabindex="03" class="box"><input type="radio"
value="0" name="Q03" tabindex="03" class="box"><input
type="radio" value="-1" name="Q03" tabindex="03"
class="box"></font></td>
</tr>
<tr>
<td align="left" width="161">Q04:</td>
<td align="left" width="500">
<font color="#FF0000">
<input type="radio" value="5" name="Q04"
tabindex="04" class="box"><input type="radio" value="3"
name="Q04" tabindex="04" class="box"><input type="radio"
value="0" name="Q04" tabindex="04" class="box"><input
type="radio" value="-1" name="Q04" tabindex="04"
class="box"></font></td>
</tr>
<tr>
<td align="left" width="161">Q05:</td>
<td align="left" width="500">
<font color="#FF0000">
<input type="radio" value="5" name="Q05"
tabindex="05" class="box"><input type="radio" value="3"
name="Q05" tabindex="05" class="box"><input type="radio"
value="0" name="Q05" tabindex="05" class="box"><input
type="radio" value="-1" name="Q05" tabindex="05"
class="box"></font></td>
</tr>
<tr>
<td align="left" width="161">Q06:</td>
<td align="left" width="500">
<font color="#FF0000">
<input type="radio" value="5" name="Q06"
tabindex="06" class="box"><input type="radio" value="3"
name="Q06" tabindex="06" class="box"><input type="radio"
value="0" name="Q06" tabindex="06" class="box"><input
type="radio" value="-1" name="Q06" tabindex="06"
class="box"></font></td>
</tr>
<tr>


Response
<html>
<head>
<meta http-equiv="Content-Type" content="text/html;
charset=windows-1252">
<title>Form Confirmation</title>
</head>
<body>
<h1>Form Confirmation</h1>
<p>Thank you for submitting the following information:</p>
<p>
<b>Q02</b>: 3<BR>
<b>Q14</b>: 5<BR>
<b>Q01</b>: 5<BR>
<b>Q13</b>: 5<BR>
<b>Q03</b>: 5<BR>
<b>Q15</b>: 5<BR>
<b>Q04</b>: 3<BR>
<b>Q16</b>: 3<BR>
<b>Test_Duration</b>: <BR>
<b>Q05</b>: 5<BR>
<b>Q17</b>: 5<BR>
<b>Q06</b>: 5<BR>
<b>Q18</b>: 3<BR>
<b>Q07</b>: 5<BR>
<b>Q19</b>: 5<BR>
<b>Q20</b>: 3<BR>
<b>User_Name1</b>: IDT\efelto<BR>
<b>Q08</b>: 5<BR>
<b>Total_Result</b>: 90<BR>
<b>Q09</b>: 5<BR>
<b>Q10</b>: 5<BR>
<b>Q11</b>: 5<BR>
<b>Q12</b>: 5<BR>
</p>
<p><a href="test_submission.asp">Return to the
form.</a></p>
</body>
</html>




>-----Original Message-----
>No. If you are using the textarea fields, they will

always appear last when using the FP Form
>Handler.
>
>--
>==============================================
>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
>
>"norfeem" <(E-Mail Removed)> wrote in

message
>news:056501c470e1$9a916970$(E-Mail Removed)...
>> Is it possible to control the default confirmation page.
>>
>> I would like the results to display like
>>
>> q1
>> q2
>> q3
>> q4
>> q5
>>
>> the results are displaying like
>> q2
>> q5
>> q3
>> q1
>> q4
>>
>> I named to fields Q01, Q02 etc I set the tab order and
>> still the results are displaying q2, q5, q3, q1, q4
>>
>> I checked the form properties and the saved values are
>> sent in proper order. Am I missing a check box

somewhere.
>>
>> Thanks in advance.
>> Erik
>>
>>
>>

>
>
>.
>

 
Reply With Quote
 
Thomas A. Rowe
Guest
Posts: n/a
 
      23rd Jul 2004
1. You shouldn't repeat your TabIndex, like, 02, 02, where it should be 01, 02, etc. TabIndex is
supported by IE4+ and NS6+.

2. The TabIndex has no bearing on the how the fields are displayed on the confirmation page. Since
you are using ASP, you can manually code the page to have the fields appear in whatever order you
want or you can use the FP Confirmation Page component to do the same.

--
==============================================
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

"norfeem" <(E-Mail Removed)> wrote in message
news:2efd01c470e7$47575ac0$(E-Mail Removed)...
> I am using radio buttons. see a few rows of the code
> below, i included code from the form and the code from the
> results page.
>
> The user will have 20 questions and select one of 4
> answers for each questions
>
> <tr>
> <td align="left" width="161">Q02:</td>
> <td align="left" width="500">
> <font color="#FF0000">
> <input type="radio" value="5" name="Q02"
> tabindex="02" class="box"><input type="radio" value="3"
> name="Q02" tabindex="02" class="box" size="20"><input
> type="radio" value="0" name="Q02" tabindex="02"
> class="box" size="20"><input type="radio" value="-1"
> name="Q02" tabindex="02" class="box"></font></td>
> </tr>
> <tr>
> <td align="left" width="161">Q03:</td>
> <td align="left" width="500">
> <font color="#FF0000">
> <input type="radio" value="5" name="Q03"
> tabindex="03" class="box"><input type="radio" value="3"
> name="Q03" tabindex="03" class="box"><input type="radio"
> value="0" name="Q03" tabindex="03" class="box"><input
> type="radio" value="-1" name="Q03" tabindex="03"
> class="box"></font></td>
> </tr>
> <tr>
> <td align="left" width="161">Q04:</td>
> <td align="left" width="500">
> <font color="#FF0000">
> <input type="radio" value="5" name="Q04"
> tabindex="04" class="box"><input type="radio" value="3"
> name="Q04" tabindex="04" class="box"><input type="radio"
> value="0" name="Q04" tabindex="04" class="box"><input
> type="radio" value="-1" name="Q04" tabindex="04"
> class="box"></font></td>
> </tr>
> <tr>
> <td align="left" width="161">Q05:</td>
> <td align="left" width="500">
> <font color="#FF0000">
> <input type="radio" value="5" name="Q05"
> tabindex="05" class="box"><input type="radio" value="3"
> name="Q05" tabindex="05" class="box"><input type="radio"
> value="0" name="Q05" tabindex="05" class="box"><input
> type="radio" value="-1" name="Q05" tabindex="05"
> class="box"></font></td>
> </tr>
> <tr>
> <td align="left" width="161">Q06:</td>
> <td align="left" width="500">
> <font color="#FF0000">
> <input type="radio" value="5" name="Q06"
> tabindex="06" class="box"><input type="radio" value="3"
> name="Q06" tabindex="06" class="box"><input type="radio"
> value="0" name="Q06" tabindex="06" class="box"><input
> type="radio" value="-1" name="Q06" tabindex="06"
> class="box"></font></td>
> </tr>
> <tr>
>
>
> Response
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html;
> charset=windows-1252">
> <title>Form Confirmation</title>
> </head>
> <body>
> <h1>Form Confirmation</h1>
> <p>Thank you for submitting the following information:</p>
> <p>
> <b>Q02</b>: 3<BR>
> <b>Q14</b>: 5<BR>
> <b>Q01</b>: 5<BR>
> <b>Q13</b>: 5<BR>
> <b>Q03</b>: 5<BR>
> <b>Q15</b>: 5<BR>
> <b>Q04</b>: 3<BR>
> <b>Q16</b>: 3<BR>
> <b>Test_Duration</b>: <BR>
> <b>Q05</b>: 5<BR>
> <b>Q17</b>: 5<BR>
> <b>Q06</b>: 5<BR>
> <b>Q18</b>: 3<BR>
> <b>Q07</b>: 5<BR>
> <b>Q19</b>: 5<BR>
> <b>Q20</b>: 3<BR>
> <b>User_Name1</b>: IDT\efelto<BR>
> <b>Q08</b>: 5<BR>
> <b>Total_Result</b>: 90<BR>
> <b>Q09</b>: 5<BR>
> <b>Q10</b>: 5<BR>
> <b>Q11</b>: 5<BR>
> <b>Q12</b>: 5<BR>
> </p>
> <p><a href="test_submission.asp">Return to the
> form.</a></p>
> </body>
> </html>
>
>
>
>
> >-----Original Message-----
> >No. If you are using the textarea fields, they will

> always appear last when using the FP Form
> >Handler.
> >
> >--
> >==============================================
> >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
> >
> >"norfeem" <(E-Mail Removed)> wrote in

> message
> >news:056501c470e1$9a916970$(E-Mail Removed)...
> >> Is it possible to control the default confirmation page.
> >>
> >> I would like the results to display like
> >>
> >> q1
> >> q2
> >> q3
> >> q4
> >> q5
> >>
> >> the results are displaying like
> >> q2
> >> q5
> >> q3
> >> q1
> >> q4
> >>
> >> I named to fields Q01, Q02 etc I set the tab order and
> >> still the results are displaying q2, q5, q3, q1, q4
> >>
> >> I checked the form properties and the saved values are
> >> sent in proper order. Am I missing a check box

> somewhere.
> >>
> >> Thanks in advance.
> >> Erik
> >>
> >>
> >>

> >
> >
> >.
> >



 
Reply With Quote
 
Stefan B Rusynko
Guest
Posts: n/a
 
      24th Jul 2004
Try Form Properties Options Saved Fields
(delete all and select Save all)


--

_____________________________________________
SBR @ ENJOY (-: [ Microsoft MVP - FrontPage ]
"Warning - Using the F1 Key will not break anything!" (-;
To find the best Newsgroup for FrontPage support see:
http://www.net-sites.com/sitebuilder/newsgroups.asp
_____________________________________________


"norfeem" <(E-Mail Removed)> wrote in message news:2efd01c470e7$47575ac0$(E-Mail Removed)...
| I am using radio buttons. see a few rows of the code
| below, i included code from the form and the code from the
| results page.
|
| The user will have 20 questions and select one of 4
| answers for each questions
|
| <tr>
| <td align="left" width="161">Q02:</td>
| <td align="left" width="500">
| <font color="#FF0000">
| <input type="radio" value="5" name="Q02"
| tabindex="02" class="box"><input type="radio" value="3"
| name="Q02" tabindex="02" class="box" size="20"><input
| type="radio" value="0" name="Q02" tabindex="02"
| class="box" size="20"><input type="radio" value="-1"
| name="Q02" tabindex="02" class="box"></font></td>
| </tr>
| <tr>
| <td align="left" width="161">Q03:</td>
| <td align="left" width="500">
| <font color="#FF0000">
| <input type="radio" value="5" name="Q03"
| tabindex="03" class="box"><input type="radio" value="3"
| name="Q03" tabindex="03" class="box"><input type="radio"
| value="0" name="Q03" tabindex="03" class="box"><input
| type="radio" value="-1" name="Q03" tabindex="03"
| class="box"></font></td>
| </tr>
| <tr>
| <td align="left" width="161">Q04:</td>
| <td align="left" width="500">
| <font color="#FF0000">
| <input type="radio" value="5" name="Q04"
| tabindex="04" class="box"><input type="radio" value="3"
| name="Q04" tabindex="04" class="box"><input type="radio"
| value="0" name="Q04" tabindex="04" class="box"><input
| type="radio" value="-1" name="Q04" tabindex="04"
| class="box"></font></td>
| </tr>
| <tr>
| <td align="left" width="161">Q05:</td>
| <td align="left" width="500">
| <font color="#FF0000">
| <input type="radio" value="5" name="Q05"
| tabindex="05" class="box"><input type="radio" value="3"
| name="Q05" tabindex="05" class="box"><input type="radio"
| value="0" name="Q05" tabindex="05" class="box"><input
| type="radio" value="-1" name="Q05" tabindex="05"
| class="box"></font></td>
| </tr>
| <tr>
| <td align="left" width="161">Q06:</td>
| <td align="left" width="500">
| <font color="#FF0000">
| <input type="radio" value="5" name="Q06"
| tabindex="06" class="box"><input type="radio" value="3"
| name="Q06" tabindex="06" class="box"><input type="radio"
| value="0" name="Q06" tabindex="06" class="box"><input
| type="radio" value="-1" name="Q06" tabindex="06"
| class="box"></font></td>
| </tr>
| <tr>
|
|
| Response
| <html>
| <head>
| <meta http-equiv="Content-Type" content="text/html;
| charset=windows-1252">
| <title>Form Confirmation</title>
| </head>
| <body>
| <h1>Form Confirmation</h1>
| <p>Thank you for submitting the following information:</p>
| <p>
| <b>Q02</b>: 3<BR>
| <b>Q14</b>: 5<BR>
| <b>Q01</b>: 5<BR>
| <b>Q13</b>: 5<BR>
| <b>Q03</b>: 5<BR>
| <b>Q15</b>: 5<BR>
| <b>Q04</b>: 3<BR>
| <b>Q16</b>: 3<BR>
| <b>Test_Duration</b>: <BR>
| <b>Q05</b>: 5<BR>
| <b>Q17</b>: 5<BR>
| <b>Q06</b>: 5<BR>
| <b>Q18</b>: 3<BR>
| <b>Q07</b>: 5<BR>
| <b>Q19</b>: 5<BR>
| <b>Q20</b>: 3<BR>
| <b>User_Name1</b>: IDT\efelto<BR>
| <b>Q08</b>: 5<BR>
| <b>Total_Result</b>: 90<BR>
| <b>Q09</b>: 5<BR>
| <b>Q10</b>: 5<BR>
| <b>Q11</b>: 5<BR>
| <b>Q12</b>: 5<BR>
| </p>
| <p><a href="test_submission.asp">Return to the
| form.</a></p>
| </body>
| </html>
|
|
|
|
| >-----Original Message-----
| >No. If you are using the textarea fields, they will
| always appear last when using the FP Form
| >Handler.
| >
| >--
| >==============================================
| >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
| >
| >"norfeem" <(E-Mail Removed)> wrote in
| message
| >news:056501c470e1$9a916970$(E-Mail Removed)...
| >> Is it possible to control the default confirmation page.
| >>
| >> I would like the results to display like
| >>
| >> q1
| >> q2
| >> q3
| >> q4
| >> q5
| >>
| >> the results are displaying like
| >> q2
| >> q5
| >> q3
| >> q1
| >> q4
| >>
| >> I named to fields Q01, Q02 etc I set the tab order and
| >> still the results are displaying q2, q5, q3, q1, q4
| >>
| >> I checked the form properties and the saved values are
| >> sent in proper order. Am I missing a check box
| somewhere.
| >>
| >> Thanks in advance.
| >> Erik
| >>
| >>
| >>
| >
| >
| >.
| >


 
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
Forms, Results & Confirmation Page =?Utf-8?B?c2ZvcmVtYW4=?= Microsoft Frontpage 1 29th Oct 2006 10:28 AM
Confirmation page displays, but results do not appear in file =?Utf-8?B?S2Vycnk=?= Microsoft Frontpage 2 6th Dec 2005 03:40 PM
Wrap TextArea results on Confirmation page =?Utf-8?B?QW5uZQ==?= Microsoft Frontpage 1 22nd Jun 2005 09:43 AM
Would not having a confirmation page mess up the save results =?Utf-8?B?SlJvZ2Vycw==?= Microsoft Frontpage 6 6th Mar 2005 02:10 PM
Form Results not emailed or no confirmation page =?Utf-8?B?U3RldmUgR2xlbm4=?= Microsoft Frontpage 1 31st Jan 2004 10:14 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 07:01 AM.