Re: Confirmation Page Results
From: Thomas A. Rowe (tarowe_at_mvps.org)
Date: 07/23/04
- Next message: Steve Easton: "Re: Double header.htm"
- Previous message: Kelsey: "Re: Double header.htm"
- In reply to: norfeem: "Re: Confirmation Page Results"
- Next in thread: Stefan B Rusynko: "Re: Confirmation Page Results"
- Messages sorted by: [ date ] [ thread ]
Date: Fri, 23 Jul 2004 18:34:23 -0400
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" <anonymous@discussions.microsoft.com> wrote in message news:2efd01c470e7$47575ac0$a601280a@phx.gbl... > 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" <anonymous@discussions.microsoft.com> wrote in > message > >news:056501c470e1$9a916970$7d02280a@phx.gbl... > >> 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 > >> > >> > >> > > > > > >. > >
- Next message: Steve Easton: "Re: Double header.htm"
- Previous message: Kelsey: "Re: Double header.htm"
- In reply to: norfeem: "Re: Confirmation Page Results"
- Next in thread: Stefan B Rusynko: "Re: Confirmation Page Results"
- Messages sorted by: [ date ] [ thread ]