Hi All,
For Connections, I use include statement. Using Access97
I have one page that displays vehicle information in detail from a database - it uses a connection called "hondas", recordset is called rsInventory database called hondas.mdb - No problems here - it Pulls A-OK.
There is also a form on the page for a visitor to input their information - this populates a database called customers.mdb, using connection called "customers", recordset called "Recordset1" By itself this also populates A-OK.
BUT when I try to combine the two - pulling fields displayed by the first recordset into Hidden field items to populate the second database - it populates as NULL - all fields are named correctly.
Code is below - will I need to have the information from the first recordset be displayed in text box's? It is displayed in a table.
++++++++++++++++++++++++++++++++++
<form ACTION="<%=MM_editAction%>" METHOD="POST" name="form1">
<input name="_recipients" type="hidden" value="eph@elpasohonda.com">
<input name="_requiredFields" type="hidden" value="Title,First_Name,Last_Name,Address,City,State,Zip,EMail,Home_Phone">
<input name="_fieldOrder" type="hidden" value="Title,First_Name,Last_Name,Address,City,State,Zip,EMail,Home_Phone,Stock,ModelNumber,ModelName,Trim,Transmission,Color,VIN,Invoice">
<input name="_replyTo" type="hidden" value="info@myhonda.net">
<input name="_subject" type="hidden" value="myhonda.net quote request">
<input type="hidden" name="Stock">
<input type="hidden" name="ModelNumber">
<input type="hidden" name="ModelName">
<input type="hidden" name="Trim">
<input type="hidden" name="Transmission">
<input type="hidden" name="Color">
<input type="hidden" name="VIN">
<input type="hidden" name="Invoice">
<table align="center" width="460" height="200" cellpadding="2" cellspacing="0">
Stuart
For Connections, I use include statement. Using Access97
I have one page that displays vehicle information in detail from a database - it uses a connection called "hondas", recordset is called rsInventory database called hondas.mdb - No problems here - it Pulls A-OK.
There is also a form on the page for a visitor to input their information - this populates a database called customers.mdb, using connection called "customers", recordset called "Recordset1" By itself this also populates A-OK.
BUT when I try to combine the two - pulling fields displayed by the first recordset into Hidden field items to populate the second database - it populates as NULL - all fields are named correctly.
Code is below - will I need to have the information from the first recordset be displayed in text box's? It is displayed in a table.
++++++++++++++++++++++++++++++++++
<form ACTION="<%=MM_editAction%>" METHOD="POST" name="form1">
<input name="_recipients" type="hidden" value="eph@elpasohonda.com">
<input name="_requiredFields" type="hidden" value="Title,First_Name,Last_Name,Address,City,State,Zip,EMail,Home_Phone">
<input name="_fieldOrder" type="hidden" value="Title,First_Name,Last_Name,Address,City,State,Zip,EMail,Home_Phone,Stock,ModelNumber,ModelName,Trim,Transmission,Color,VIN,Invoice">
<input name="_replyTo" type="hidden" value="info@myhonda.net">
<input name="_subject" type="hidden" value="myhonda.net quote request">
<input type="hidden" name="Stock">
<input type="hidden" name="ModelNumber">
<input type="hidden" name="ModelName">
<input type="hidden" name="Trim">
<input type="hidden" name="Transmission">
<input type="hidden" name="Color">
<input type="hidden" name="VIN">
<input type="hidden" name="Invoice">
<table align="center" width="460" height="200" cellpadding="2" cellspacing="0">
Stuart