Icedan
01-11-2007, 03:56 AM
Ok here is the registration form:
http://www.orient-explorer.com/sgx/Registration.asp
Upon filling and submitting it, the data will enter the database (MDB file). Afterwards, it will redirect you to the Checking page, unfortunately, it does not request the data from the previous page (the registration page), this is because the action command for the form on the registration page only instructs the submission button to add the data to the database, not to pass the values to the checking page.
<form method="POST" action="<%=MM_editAction%>" name="form2">
This is the line for submitting the form, as you can see, its action is for the database. If I were not having a database, it would have been "RegistrationCheck.asp" which would allow the Registration Checking page to request the values.
I am not 100% sure, but I believe forms can only have one action, so if this is the case, how do I request the values from the Registration Page and have the Registration Check page collect those values and display them?
Please note, if you do test the registration page out, you will notice on the Checking page the values "Not Interested" in some of the fields, that is because of some additional code I have put in the Registration Check page, so just ignore them.
Thanks for any help.. Oh and you might notice from the MM that I am using Dreamweaver to help me build this.
- Dan
http://www.orient-explorer.com/sgx/Registration.asp
Upon filling and submitting it, the data will enter the database (MDB file). Afterwards, it will redirect you to the Checking page, unfortunately, it does not request the data from the previous page (the registration page), this is because the action command for the form on the registration page only instructs the submission button to add the data to the database, not to pass the values to the checking page.
<form method="POST" action="<%=MM_editAction%>" name="form2">
This is the line for submitting the form, as you can see, its action is for the database. If I were not having a database, it would have been "RegistrationCheck.asp" which would allow the Registration Checking page to request the values.
I am not 100% sure, but I believe forms can only have one action, so if this is the case, how do I request the values from the Registration Page and have the Registration Check page collect those values and display them?
Please note, if you do test the registration page out, you will notice on the Checking page the values "Not Interested" in some of the fields, that is because of some additional code I have put in the Registration Check page, so just ignore them.
Thanks for any help.. Oh and you might notice from the MM that I am using Dreamweaver to help me build this.
- Dan