I have an ASP form that I created that consists of 3 pages
The fist on asks you to enter your personal information and some billing info. When you hit submit I have the form POST to the second ASP form I call confirm.asp
The second form ( confirm.asp ) simply asks you to confirm the information you entered. I was able to retrieve that information by creating hidden input forms and using <%=request.form(“XX”)%> in the value field then I would just simply readd <%=request.form(“XX”)%> to the back end of the HTML code between the tags to have it both display the info they entered and to add it to an input so I could therefore have a confirm button submit the information to a database.
Example of code
<td width="377" height="24"><input type="hidden" name="ISDN" size="3" value="<%=Request.Form("ISDN"%>"><%=Request.Form("ISDN"%></td>
this all works great. The database updates just fine and I get a confirmation in which the user can use that back button and correct if they notice a mistake.
Now the problem is the next page
The way I have the information travel to the next page is by using a custom confirmation from the second page. Now what I really want is for the user information to travel from to confirm page to the third one so when the user presses confirm they can move on to a new bill without having to reenter the name ect. ect .
The only problem is since I’m not using a POST to *.asp and the <%=request.form(“XX”)%> is not working. Although I can get the get an echo through the confirmation field component I cannot get it to insert into a form.
Does anyone have any recommendations on how to handle this?? Any help would be greatly appreciated
The fist on asks you to enter your personal information and some billing info. When you hit submit I have the form POST to the second ASP form I call confirm.asp
The second form ( confirm.asp ) simply asks you to confirm the information you entered. I was able to retrieve that information by creating hidden input forms and using <%=request.form(“XX”)%> in the value field then I would just simply readd <%=request.form(“XX”)%> to the back end of the HTML code between the tags to have it both display the info they entered and to add it to an input so I could therefore have a confirm button submit the information to a database.
Example of code
<td width="377" height="24"><input type="hidden" name="ISDN" size="3" value="<%=Request.Form("ISDN"%>"><%=Request.Form("ISDN"%></td>
this all works great. The database updates just fine and I get a confirmation in which the user can use that back button and correct if they notice a mistake.
Now the problem is the next page
The way I have the information travel to the next page is by using a custom confirmation from the second page. Now what I really want is for the user information to travel from to confirm page to the third one so when the user presses confirm they can move on to a new bill without having to reenter the name ect. ect .
The only problem is since I’m not using a POST to *.asp and the <%=request.form(“XX”)%> is not working. Although I can get the get an echo through the confirmation field component I cannot get it to insert into a form.
Does anyone have any recommendations on how to handle this?? Any help would be greatly appreciated