| Home | Forums | Reviews | Articles | Register |
![]() |
| Thread Tools | Rate Thread |
|
Clark
Guest
Posts: n/a
|
For some reason my confirmation fields are not showing up after a form is
submittted. Can anyone tell me why? The form can be filled out at http://www.homepagedoctor.com/marsha...gistration.asp and after you have submitted it you will see three confirmation fields missing for the first name, maiden name, and last name. If someone would please fill out the form (ignore the not ready-to-use message) and see if you can figure why the confirmation fields are not showing up, I would most appreciate it. This is a recent problem, I have no idea what is different, I have been using FP2000 right along and now this is happening without having this problem. Thanks for any assistance |
|
||
|
||||
|
|
|
| |
|
Stefan B Rusynko
Guest
Posts: n/a
|
No one can see your server side code
Explain your code to show the fields -- _____________________________________________ 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 _____________________________________________ "Clark" <non-(E-Mail Removed)> wrote in message news:(E-Mail Removed)... | For some reason my confirmation fields are not showing up after a form is | submittted. Can anyone tell me why? | | The form can be filled out at | | http://www.homepagedoctor.com/marsha...gistration.asp | | and after you have submitted it you will see three confirmation fields missing | for the first name, maiden name, and last name. | | If someone would please fill out the form (ignore the not ready-to-use message) | and see if you can figure why the confirmation fields are not showing up, I | would most appreciate it. | | This is a recent problem, I have no idea what is different, I have been using | FP2000 right along and now this is happening without having this problem. | | Thanks for any assistance |
|
||
|
||||
|
Stefan B Rusynko
Guest
Posts: n/a
|
You are sending the form to the page confirmation.asp for processing
- so it receives all form field values thru ASP To show a form field on that page all you need to do is add a response write (using the shorthand =) for the form field names from the form So for first name, maiden name, and last name to show you would just change your table in your body section of the page (in code view) to: <table border="0" cellpadding="0" cellspacing="0" width="500"> <tr><td>First Name</td> <td><%=Request.Form("Fname")%></td> </tr><tr><td>Maiden Name</td> <td><%=Request.Form("MDName")%></td> </tr><tr> <td>Last Name</td> <td><%=Request.Form("LName")%></td> </tr></table> -- _____________________________________________ 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 _____________________________________________ "Clark" <non-(E-Mail Removed)> wrote in message news:(E-Mail Removed)... | Hello Stefan. | | The works was all done via FP2000 using Insert / form / confirmation field to | put the confirmatino fields on the confirmation page. | | I am not sure what you need to see. I can list the code for the confirmation | page that shows in the html view in Frontpage -- is that useful / what you need? | Here that is if it is helpful (sorry for the length let me know if something | else is needed: | | <form method="POST" action="--WEBBOT-SELF--" onsubmit="return | FrontPage_Form1_Validator(this)" name="FrontPage_Form1" language="JavaScript"> | <!--webbot bot="SaveDatabase" startspan SuggestedExt="asp" | U-ASP-Include-Url="../_fpclass/fpdbform.inc" | S-DataConnection="registration" S-RecordSource="Results" | U-Database-URL="../fpdb/registration.mdb" | U-Confirmation-Url="confirmation.asp" | S-Builtin-Fields="Timestamp" S-Builtin-DBFields="Timestamp" | S-Form-Fields="SFname Interest PrintEmail PrintPhone Address1 | Address2 LName MDName GrandChildren SearchEmail Classmate SLname Hobbies Needs | City Email Service Quote ListPhone Phone Occupation SOccupation ZIP Education | Goals Country State Fname Daughters Sons GreatGnandChildren ShowCity" | S-Form-DBFields="SFname Interest PrintEmail PrintPhone Address1 | Address2 LName MDName GrandChildren SearchEmail Classmate SLname Hobbies Needs | City Email Service Quote ListPhone Phone Occupation SOccupation ZIP Education | Goals Country State Fname Daughters Sons GreatGnandChildren ShowCity" --><input | TYPE="hidden" NAME="VTI-GROUP" VALUE="0"><!--#include | file="../_fpclass/fpdbform.inc"--><!--webbot | bot="SaveDatabase" endspan --> | <p> </p> | <div align="center"> | <table border="0" cellpadding="0" cellspacing="0" width="574"> | <tr> | <td width="570" bgcolor="#FFFFFF" colspan="5"> | <p style="margin-left: 8; margin-right: 8"><b><font | color="#003366">All | classmates should fill out this form. Classmates married | to each other should each fill out the form | separately</font><font color="#FF0000"><br> | </font></b> | </td> | </tr> | <tr> | <td width="570" bgcolor="#FFFFFF" colspan="5"> | <p style="margin-left: 8"><b><font color="#FF0000">NOT | READY FOR USE YET</font></b></p> | </td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">First | Name</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="First Name" B-Value-Required="TRUE" | --><input type="text" name="Fname" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">Maiden Name | if any</p> | </td> | <td width="351" colspan="4"><input type="text" | name="MDName" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Last Name</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="Last Name" B-Value-Required="TRUE" | --><input type="text" name="LName" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Email address (Please double | check your typing):</p> | </td> | <td width="351" colspan="4"><input type="text" | name="Email" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">OK to print | your | email in our program book?</p> | </td> | <td width="176" colspan="2">Yes<input type="radio" | name="PrintEmail" value="Yes" checked></td> | <td width="175" colspan="2">No <input type="radio" | name="PrintEmail" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="176" colspan="2"></td> | <td width="175" colspan="2"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">Ok to allow | folks | to find your email on our Emails/Phones page of this | site?</p> | </td> | <td width="176" colspan="2">Yes <input type="radio" | name="SearchEmail" value="Yes" checked></td> | <td width="175" colspan="2">No <input type="radio" | name="SearchEmail" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="176" colspan="2"></td> | <td width="175" colspan="2"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Phone, Enter it like:<br> | 585-999-9999</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="Phone" B-Value-Required="TRUE" --><input | type="text" name="Phone" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="176" colspan="2"></td> | <td width="175" colspan="2"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">OK to allow | folks to | find your phone number on the emails/phones page of this | website?</p> | </td> | <td width="176" colspan="2">Yes <input type="radio" | name="ListPhone" value="Yes" checked></td> | <td width="175" colspan="2">No <input type="radio" | name="ListPhone" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="176" colspan="2"></td> | <td width="175" colspan="2"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">OK to print | your phone | number in the program book?</p> | </td> | <td width="176" colspan="2">Yes <input | type="radio" name="PrintPhone" value="Yes" checked></td> | <td width="175" colspan="2">No <input type="radio" | name="PrintPhone" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: | 8">AddressLine1</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="AddressLine1" B-Value-Required="TRUE" | --><input type="text" name="Address1" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: | 8">AddressLine2</p> | </td> | <td width="351" colspan="4"><input type="text" | name="Address2" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">City</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="City" B-Value-Required="TRUE" --><input | type="text" name="City" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">State/Province</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="State / Province" | B-Value-Required="TRUE" --><input type="text" | name="State" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Country</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="Country" B-Value-Required="TRUE" | --><input type="text" name="Country" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">ZIP</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="ZIP" B-Value-Required="TRUE" --><input | type="text" name="ZIP" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="176" colspan="2"></td> | <td width="175" colspan="2"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">OK to show | your city and state on the Who's | Listed page of this site?</p> | </td> | <td width="176" colspan="2">Yes <input type="radio" | name="ShowCity" value="Yes" checked></td> | <td width="175" colspan="2">No <input type="radio" | name="ShowCity" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Education</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Education" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Military Service</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Service" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">Hobbies / | Community | Service</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Hobbies" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Occupation</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Occupation" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Goals</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Goals" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8; margin-right: 8">Quote / Msg | to | classmates (this will show up under the Classmate Quotes | link on our website):</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Quote" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8"><!--webbot bot="Validation" | S-Display-Name="Sons" B-Value-Required="TRUE" --><select | size="1" name="Sons"> | <option>0</option> | <option>1</option> | <option>2</option> | <option>3</option> | <option>4</option> | <option>5</option> | <option>6</option> | <option>7</option> | <option>8</option> | <option>9</option> | </select> Sons</p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="GrandChildren" B-Value-Required="TRUE" | --><select size="1" name="GrandChildren"> | <option>0</option> | <option>1</option> | <option>2</option> | <option>3</option> | <option>4</option> | <option>5</option> | <option>6</option> | <option>7</option> | <option>8</option> | <option>9</option> | </select> Grandchildren</td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8"><!--webbot bot="Validation" | S-Display-Name="Daughters" B-Value-Required="TRUE" | --><select size="1" name="Daughters"> | <option>0</option> | <option>1</option> | <option>2</option> | <option>3</option> | <option>4</option> | <option>5</option> | <option>6</option> | <option>7</option> | <option>8</option> | <option>9</option> | </select> Daughters </p> | </td> | <td width="351" colspan="4"><!--webbot bot="Validation" | S-Display-Name="GreatGrandChildren" | B-Value-Required="TRUE" --><select size="1" | name="GreatGnandChildren"> | <option>0</option> | <option>1</option> | <option>2</option> | <option>3</option> | <option>4</option> | <option>5</option> | <option>6</option> | <option>7</option> | <option>8</option> | <option>9</option> | </select> Great Grandchildren</td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Special Needs</p> | </td> | <td width="351" colspan="4"><textarea rows="2" | name="Needs" cols="38"></textarea></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Spouse/Partner First | Name </p> | </td> | <td width="351" colspan="4"><input type="text" | name="SFname" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Spouse/Partner Last Name: | </td> | <td width="351" colspan="4"><input type="text" | name="SLname" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Was Spouse / Partner a class | of '56 classmate? | </td> | <td width="176" colspan="2"> | <p align="center">Yes <!--webbot bot="Validation" | S-Display-Name="Spouse Classmate?" | B-Value-Required="TRUE" --><input type="radio" | name="Classmate" value="Yes"></td> | <td width="175" colspan="2">No <input type="radio" | name="Classmate" value="No"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="351" colspan="4"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p style="margin-left: 8">Spouse / Partner Occupation | </td> | <td width="351" colspan="4"><input type="text" | name="SOccupation" size="40"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | | </td> | <td width="60"></td> | <td width="201" colspan="2"></td> | <td width="90"></td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF" rowspan="2"> | <p style="margin-left: 8; margin-right: 8">Are you | likely to attend<br> | a 50'th year reunion?</p> | </td> | <td width="60"> | <p align="center"> No</p> | </td> | <td width="201" colspan="2"> Maybe</td> | </center> | <td width="90"> | <p align="right"> Yes</p> | </td> | </tr> | <center> | <tr> | <td width="60"> | <p align="center"><!--webbot bot="Validation" | S-Display-Name="Attendance liklihood" | B-Value-Required="TRUE" --><input type="radio" | value="No" name="Interest"> | </td> | <td width="201" colspan="2"><input type="radio" | value="Maybe" name="Interest"> | </td> | </center> | <td width="90"> | <p align="right"><input type="radio" value="Yes" | name="Interest"> | </td> | </tr> | <center> | <tr> | <td width="570" bgcolor="#FFFFFF" colspan="5"> | | </td> | </tr> | <tr> | <td width="570" bgcolor="#FFFFFF" colspan="5"> | <p style="margin-left: 8; margin-right: 8"> | <b><font color="#FF0000">Please take note:</font></b> By | submitting this form you are agreeing that the program | committee may, at its discretion, include this | information in the reunion program book, except for | those cases where you have | specifically indicated otherwise on this form.</p> | </td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | </td> | <td width="351" colspan="4"> | </td> | </tr> | <tr> | <td width="219" bgcolor="#FFFFFF"> | <p align="center"><input type="submit" value="Submit my | data" name="B1"></td> | <td width="351" colspan="4"> | <p align="center"><input type="reset" value="Oops - | clear this form" name="B2"></td> | </tr> | <tr> | <td width="570" bgcolor="#FFFFFF" colspan="5"> | | <p align="center"><strong><font color="#003366"><a | href="http://www.jmhs-1956.cityslide.com"><br> | Back | to the Reunion Website<br> | </a> </font></strong></p> | | </td> | </tr> | </table> | </div> | </form> | | | On Sat, 24 Sep 2005 12:52:10 -0400, "Stefan B Rusynko" <(E-Mail Removed)> | wrote: | | >No one can see your server side code | >Explain your code to show the fields | |
|
||
|
||||
|
Clark
Guest
Posts: n/a
|
Hi Stefan, thank you for the quick reply.
Now, This is wierd, but it still doesnt work. Here is the resulting code I used which I think includes what you suggested: <div align="center"> <center> <table border="0" cellpadding="0" cellspacing="0" width="500" bgcolor="#FFFFFF"> <tr> <td>this section is currently testing stuff by the webmaster who is trying to make the actual data you entered show up <div align="center"> <table border="0" cellpadding="0" cellspacing="0" width="500"> <tr><td>First Name</td> <td><%=Request.Form("Fname")%></td> </tr><tr><td>Maiden Name</td> <td><%=Request.Form("MDName")%></td> </tr><tr> <td>Last Name</td> <td><%=Request.Form("LName")%></td> </tr></table> </div> </td> </tr> </table> </center> </div> Am I missing something? Should I be using the actual form name somewhere? Thanks Clark On Sun, 25 Sep 2005 05:28:07 -0400, "Stefan B Rusynko" <(E-Mail Removed)> wrote: >You are sending the form to the page confirmation.asp for processing >- so it receives all form field values thru ASP > >To show a form field on that page all you need to do is add a response write (using the shorthand =) for the form field names from >the form >So for first name, maiden name, and last name to show you would just change your table in your body section of the page (in code >view) to: > ><table border="0" cellpadding="0" cellspacing="0" width="500"> ><tr><td>First Name</td> ><td><%=Request.Form("Fname")%></td> ></tr><tr><td>Maiden Name</td> > <td><%=Request.Form("MDName")%></td> > </tr><tr> <td>Last Name</td> > <td><%=Request.Form("LName")%></td> > </tr></table> |
|
||
|
||||
|
Stefan B Rusynko
Guest
Posts: n/a
|
It won't work on confirmation.asp because your form is sending the data to the page registration.asp
(thru action="registration.asp") in <form method="POST" action="registration.asp" onsubmit="return FrontPage_Form1_Validator(this)" name="FrontPage_Form1" language="JavaScript" webbot-action="--WEBBOT-SELF--"> on http://www.homepagedoctor.com/marsha...gistration.asp So http://www.homepagedoctor.com/marsha...nfirmation.asp will never see anything -- _____________________________________________ 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 _____________________________________________ "Clark" <non-(E-Mail Removed)> wrote in message news:(E-Mail Removed)... | Hi Stefan, thank you for the quick reply. | | Now, This is wierd, but it still doesnt work. Here is the resulting code I used | which I think includes what you suggested: | | <div align="center"> | <center> | <table border="0" cellpadding="0" cellspacing="0" width="500" | bgcolor="#FFFFFF"> | <tr> | <td>this section is currently testing stuff by the webmaster who is trying | to make the actual data you entered show up | <div align="center"> | <table border="0" cellpadding="0" cellspacing="0" width="500"> | <tr><td>First Name</td> | <td><%=Request.Form("Fname")%></td> | </tr><tr><td>Maiden Name</td> | <td><%=Request.Form("MDName")%></td> | </tr><tr> <td>Last Name</td> | <td><%=Request.Form("LName")%></td> | </tr></table> </div> | </td> | </tr> | </table> | </center> | </div> | | Am I missing something? Should I be using the actual form name somewhere? | | Thanks | | Clark | | On Sun, 25 Sep 2005 05:28:07 -0400, "Stefan B Rusynko" <(E-Mail Removed)> | wrote: | | >You are sending the form to the page confirmation.asp for processing | >- so it receives all form field values thru ASP | > | >To show a form field on that page all you need to do is add a response write (using the shorthand =) for the form field names from | >the form | >So for first name, maiden name, and last name to show you would just change your table in your body section of the page (in code | >view) to: | > | ><table border="0" cellpadding="0" cellspacing="0" width="500"> | ><tr><td>First Name</td> | ><td><%=Request.Form("Fname")%></td> | ></tr><tr><td>Maiden Name</td> | > <td><%=Request.Form("MDName")%></td> | > </tr><tr> <td>Last Name</td> | > <td><%=Request.Form("LName")%></td> | > </tr></table> | |
|
||
|
||||
|
Clark
Guest
Posts: n/a
|
Thanks for following up on this thread Stefan.
As I indicated, I did this all via FP, and it generated the ASP code required to send the form info to a database, along with that necessary to send the confirmation info to the confirmation.asp page ( which I used the DBR Wizard to select). It looks to be that FP does a response.redirect to confirmaton.asp. The Action="registration.asp" that shows up was generated by FP. Whatever else FP is doing behind the scenes with its BOTS is a mystery (to me). However there is good news. Since I kept feeling it *should* work using the FP bots, I did a re-install of FP just in case, but I think what was one source of difficulty is that the case of the letters in the confirmation statement had to exactly match the case of Form Field names. Who knew! Usually I always use all small letters but in this case I had not done that in the form field names :=( So, taking care to be exact in that regard, I now have everything working. I do appreciate your assistance, which has at least increased my understanding of what is going on. Best regards and thank you Clark On Sun, 25 Sep 2005 12:28:42 -0400, "Stefan B Rusynko" <(E-Mail Removed)> wrote: >It won't work on confirmation.asp because your form is sending the data to the page registration.asp >(thru action="registration.asp") in ><form method="POST" action="registration.asp" onsubmit="return FrontPage_Form1_Validator(this)" name="FrontPage_Form1" >language="JavaScript" webbot-action="--WEBBOT-SELF--"> on >http://www.homepagedoctor.com/marsha...gistration.asp >So http://www.homepagedoctor.com/marsha...nfirmation.asp will never see anything |
|
||
|
||||
|
|
|
| |
![]() |
| Thread Tools | |
| Rate This Thread | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Day/Date Calendar notes dont show and dont print | clavin3366 | Microsoft Outlook Discussion | 1 | 29th May 2008 06:20 PM |
| prob with sort in report (query fields dont show up)? | _Bigred | Microsoft Access Reports | 4 | 16th Feb 2006 04:46 AM |
| Access forms dont show all fields | =?Utf-8?B?am9obiBtY21pY2hhZWw=?= | Microsoft Access Forms | 3 | 2nd Nov 2005 03:46 PM |
| Form fields dont always show up when opening other users folder. | =?Utf-8?B?UnVzdHk=?= | Microsoft Outlook Form Programming | 3 | 7th Dec 2004 02:57 AM |
| Confirmation Fields not appearing on confirmation form | Rick Budde | Microsoft Frontpage | 1 | 13th Jul 2003 02:49 PM |
Powered by vBulletin®. Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2010, Crawlability, Inc. |




