Confirmation Page Results

N

norfeem

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
 
T

Thomas A. Rowe

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)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
N

norfeem

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
 
T

Thomas A. Rowe

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)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
S

Stefan B Rusynko

Try Form Properties Options Saved Fields
(delete all and select Save all)


--




| 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)
| >
| >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
| >
| message
| >| >> 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
| >>
| >>
| >>
| >
| >
| >.
| >
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top