nicks60610
MIS
I have an ASP page where the user fills out about 30 fields in a form and then submits it for processing, the form fields are processed by a simple CDONTS script that emails the fields to a recipient. I am now trying to create a confirmation page for the person submitting the form so they can print it out for their own records, but I am sort of stuck. How do I call up the form values from the previous page and insert in to my confirmation page?
I tried something like this:
ASP Processing Form page:
<%frmVendor=Request.Form("VENDOR"%>
<%frmDescription=Request.Form("EQUIPMENT DESCRIPTION"%>
<%frmManufacturer=Request.Form("MANUFACTURER"%>
<%frmModel=Request.Form("MODEL"%>
<%frmSerialnumber=Request.Form("SERIAL NUMBER"%>
<%frmOriginator=Request.Form("ORIGINATOR"%>
<%frmProject=Request.Form("AR-PROJECT NUMBER"%>
<%frmActivity=Request.Form("ACTIVITY"%>
<%frmCost=Request.Form("COST"%>
<%frmProductionDepartment=Request.Form("PRODUCTION DEPARTMENT"%>
<%frmPlantArea=Request.Form("PLANT AREA"%>
<%frmMoldWeight=Request.Form("MOLD WEIGHT"%>
<%frmCavities=Request.Form("CAVITIES"%>
<%frmRunnerType=Request.Form("RUNNER TYPE"%>
<%frmStackHeight=Request.Form("STACK HEIGHT"%>
<%frmShotWeight=Request.Form("SHOT WEIGHT"%>
<%frmMaterialType=Request.Form("MATERIAL TYPE"%>
<%frmProductDrawing=Request.Form("PRODUCT DRAWING NO"%>
<%frmProductCodes=Request.Form("PRODUCT CODES"%>
Then on the confirmation page it looks like this:
<td width="46%"><b>Vendor</b></td>
<td width="54%"><%=frmVendor%>
</td>
etc, etc.
But it does not pull up any data, any idea what I am doing wrong here??
Thanks,
I tried something like this:
ASP Processing Form page:
<%frmVendor=Request.Form("VENDOR"%>
<%frmDescription=Request.Form("EQUIPMENT DESCRIPTION"%>
<%frmManufacturer=Request.Form("MANUFACTURER"%>
<%frmModel=Request.Form("MODEL"%>
<%frmSerialnumber=Request.Form("SERIAL NUMBER"%>
<%frmOriginator=Request.Form("ORIGINATOR"%>
<%frmProject=Request.Form("AR-PROJECT NUMBER"%>
<%frmActivity=Request.Form("ACTIVITY"%>
<%frmCost=Request.Form("COST"%>
<%frmProductionDepartment=Request.Form("PRODUCTION DEPARTMENT"%>
<%frmPlantArea=Request.Form("PLANT AREA"%>
<%frmMoldWeight=Request.Form("MOLD WEIGHT"%>
<%frmCavities=Request.Form("CAVITIES"%>
<%frmRunnerType=Request.Form("RUNNER TYPE"%>
<%frmStackHeight=Request.Form("STACK HEIGHT"%>
<%frmShotWeight=Request.Form("SHOT WEIGHT"%>
<%frmMaterialType=Request.Form("MATERIAL TYPE"%>
<%frmProductDrawing=Request.Form("PRODUCT DRAWING NO"%>
<%frmProductCodes=Request.Form("PRODUCT CODES"%>
Then on the confirmation page it looks like this:
<td width="46%"><b>Vendor</b></td>
<td width="54%"><%=frmVendor%>
</td>
etc, etc.
But it does not pull up any data, any idea what I am doing wrong here??
Thanks,