Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

asp page does not save to the db

Status
Not open for further replies.

dylan03

Technical User
Mar 17, 2003
15
0
0
US
Hello. I am very new to this, so if you respond, please be very specific. Thanks!

I have a website where a customer can fill out the credit application (under the financing tab) and it is supposed to save the information to the related customer table.

I created the page, and have created a database connection. However, every time I open the page and check the form properties, I have to reselect the database connection to use, and therefore remap the field names.

I know this is why when I enter info into the website, it doesn't save to the db. But I can't figure out why it doesn't save the connection/mapping information in the form properties.

Any assistance is greatly appreciated.

The website is The page is creditapp
The db connection is named automaxxconnect
The db is named automaxxweb
The table used to store info is [Customers]
 
Can't really help with this info, you need to post some code so we can see what you're doing, you can't view ASP code in a webpage. Saturday 12.00
im6.gif
im2.gif
im2.gif
20.00
im5.gif
im4.gif
im7.gif
3.00am
im8.gif
Sunday [img http
 
Unfortunately, I don't know where the problem would be... since I created this through the wizard.

<%
' FP_ASP ASP Automatically generated by a Frontpage Component. Do not Edit.

On Error Resume Next
Session(&quot;FP_OldCodePage&quot;) = Session.CodePage
Session(&quot;FP_OldLCID&quot;) = Session.LCID
Session.CodePage = 1252
Session.LCID = 1033
Err.Clear

strErrorUrl = &quot;&quot;

If Request.ServerVariables(&quot;REQUEST_METHOD&quot;) = &quot;POST&quot; Then
If Request.Form(&quot;VTI-GROUP&quot;) = &quot;0&quot; Then
Err.Clear

Set fp_conn = Server.CreateObject(&quot;ADODB.Connection&quot;)
FP_DumpError strErrorUrl, &quot;Cannot create connection&quot;

Set fp_rs = Server.CreateObject(&quot;ADODB.Recordset&quot;)
FP_DumpError strErrorUrl, &quot;Cannot create record set&quot;

fp_conn.Open Application(&quot;automaxxconnect_ConnectionString&quot;)
FP_DumpError strErrorUrl, &quot;Cannot open database&quot;

fp_rs.Open &quot;Customers&quot;, fp_conn, 1, 3, 2 ' adOpenKeySet, adLockOptimistic, adCmdTable
FP_DumpError strErrorUrl, &quot;Cannot open record set&quot;

fp_rs.AddNew
FP_DumpError strErrorUrl, &quot;Cannot add new record set to the database&quot;
Dim arFormFields0(53)
Dim arFormDBFields0(53)
Dim arFormValues0(53)

arFormFields0(0) = &quot;DriversLicenseState&quot;
arFormDBFields0(0) = &quot;DriversLicenseState&quot;
arFormValues0(0) = Request(&quot;DriversLicenseState&quot;)
arFormFields0(1) = &quot;PreviousPayment&quot;
arFormDBFields0(1) = &quot;PreviousPayment&quot;
arFormValues0(1) = Request(&quot;PreviousPayment&quot;)
arFormFields0(2) = &quot;Bankruptcy&quot;
arFormDBFields0(2) = &quot;Bankruptcy&quot;
arFormValues0(2) = Request(&quot;Bankruptcy&quot;)
arFormFields0(3) = &quot;PreviousState&quot;
arFormDBFields0(3) = &quot;PreviousState&quot;
arFormValues0(3) = Request(&quot;PreviousState&quot;)
arFormFields0(4) = &quot;PreviousEmployerPhone&quot;
arFormDBFields0(4) = &quot;PreviousEmployerPhone&quot;
arFormValues0(4) = Request(&quot;PreviousEmployerPhone&quot;)
arFormFields0(5) = &quot;DriversLicenseNumber&quot;
arFormDBFields0(5) = &quot;DriversLicenseNumber&quot;
arFormValues0(5) = Request(&quot;DriversLicenseNumber&quot;)
arFormFields0(6) = &quot;CurrentCity&quot;
arFormDBFields0(6) = &quot;CurrentCity&quot;
arFormValues0(6) = Request(&quot;CurrentCity&quot;)
arFormFields0(7) = &quot;CellPhone&quot;
arFormDBFields0(7) = &quot;CellPhone&quot;
arFormValues0(7) = Request(&quot;CellPhone&quot;)
arFormFields0(8) = &quot;CoBuyerCurrentEmployer&quot;
arFormDBFields0(8) = &quot;CoBuyerCurrentEmployer&quot;
arFormValues0(8) = Request(&quot;CoBuyerCurrentEmployer&quot;)
arFormFields0(9) = &quot;CoBuyerCurrentGrossMonthlyIncome&quot;
arFormDBFields0(9) = &quot;CoBuyerCurrentGrossMonthlyIncome&quot;
arFormValues0(9) = Request(&quot;CoBuyerCurrentGrossMonthlyIncome&quot;)
arFormFields0(10) = &quot;ExpDate&quot;
arFormDBFields0(10) = &quot;ExpDate&quot;
arFormValues0(10) = Request(&quot;ExpDate&quot;)
arFormFields0(11) = &quot;HomePhone&quot;
arFormDBFields0(11) = &quot;HomePhone&quot;
arFormValues0(11) = Request(&quot;HomePhone&quot;)
arFormFields0(12) = &quot;PreviousZipCode&quot;
arFormDBFields0(12) = &quot;PreviousZipCode&quot;
arFormValues0(12) = Request(&quot;PreviousZipCode&quot;)
arFormFields0(13) = &quot;PrimaryCustomerName&quot;
arFormDBFields0(13) = &quot;PrimaryCustomerName&quot;
arFormValues0(13) = Request(&quot;PrimaryCustomerName&quot;)
arFormFields0(14) = &quot;DOB&quot;
arFormDBFields0(14) = &quot;DOB&quot;
arFormValues0(14) = Request(&quot;DOB&quot;)
arFormFields0(15) = &quot;CurrentResidenceLength&quot;
arFormDBFields0(15) = &quot;CurrentResidenceLength&quot;
arFormValues0(15) = Request(&quot;CurrentResidenceLength&quot;)
arFormFields0(16) = &quot;CoBuyerZipCode&quot;
arFormDBFields0(16) = &quot;CoBuyerZipCode&quot;
arFormValues0(16) = Request(&quot;CoBuyerZipCode&quot;)
arFormFields0(17) = &quot;CoBuyerCurrentOccupation&quot;
arFormDBFields0(17) = &quot;CoBuyerCurrentOccupation&quot;
arFormValues0(17) = Request(&quot;CoBuyerCurrentOccupation&quot;)
arFormFields0(18) = &quot;CoBuyerCurrentPositionTime&quot;
arFormDBFields0(18) = &quot;CoBuyerCurrentPositionTime&quot;
arFormValues0(18) = Request(&quot;CoBuyerCurrentPositionTime&quot;)
arFormFields0(19) = &quot;CurrentEmployerPhone&quot;
arFormDBFields0(19) = &quot;CurrentEmployerPhone&quot;
arFormValues0(19) = Request(&quot;CurrentEmployerPhone&quot;)
arFormFields0(20) = &quot;CurrentOccupation&quot;
arFormDBFields0(20) = &quot;CurrentOccupation&quot;
arFormValues0(20) = Request(&quot;CurrentOccupation&quot;)
arFormFields0(21) = &quot;CurrentLandlordPhoneNumber&quot;
arFormDBFields0(21) = &quot;CurrentLandlordPhoneNumber&quot;
arFormValues0(21) = Request(&quot;CurrentLandlordPhoneNumber&quot;)
arFormFields0(22) = &quot;PreviousAddress1&quot;
arFormDBFields0(22) = &quot;PreviousAddress1&quot;
arFormValues0(22) = Request(&quot;PreviousAddress1&quot;)
arFormFields0(23) = &quot;CurrentPositionTime&quot;
arFormDBFields0(23) = &quot;CurrentPositionTime&quot;
arFormValues0(23) = Request(&quot;CurrentPositionTime&quot;)
arFormFields0(24) = &quot;CoBuyerAddress1&quot;
arFormDBFields0(24) = &quot;CoBuyerAddress1&quot;
arFormValues0(24) = Request(&quot;CoBuyerAddress1&quot;)
arFormFields0(25) = &quot;CoBuyerCity&quot;
arFormDBFields0(25) = &quot;CoBuyerCity&quot;
arFormValues0(25) = Request(&quot;CoBuyerCity&quot;)
arFormFields0(26) = &quot;CurrentState1&quot;
arFormDBFields0(26) = &quot;CurrentState1&quot;
arFormValues0(26) = Request(&quot;CurrentState1&quot;)
arFormFields0(27) = &quot;PreviousAddress2&quot;
arFormDBFields0(27) = &quot;PreviousAddress2&quot;
arFormValues0(27) = Request(&quot;PreviousAddress2&quot;)
arFormFields0(28) = &quot;PreviousResidenceLength&quot;
arFormDBFields0(28) = &quot;PreviousResidenceLength&quot;
arFormValues0(28) = Request(&quot;PreviousResidenceLength&quot;)
arFormFields0(29) = &quot;PreviousEmployerName&quot;
arFormDBFields0(29) = &quot;PreviousEmployerName&quot;
arFormValues0(29) = Request(&quot;PreviousEmployerName&quot;)
arFormFields0(30) = &quot;OtherIncomeType&quot;
arFormDBFields0(30) = &quot;OtherIncomeType&quot;
arFormValues0(30) = Request(&quot;OtherIncomeType&quot;)
arFormFields0(31) = &quot;CoBuyerAddress2&quot;
arFormDBFields0(31) = &quot;CoBuyerAddress2&quot;
arFormValues0(31) = Request(&quot;CoBuyerAddress2&quot;)
arFormFields0(32) = &quot;PreviousResidentialType&quot;
arFormDBFields0(32) = &quot;PreviousResidentialType&quot;
arFormValues0(32) = Request(&quot;PreviousResidentialType&quot;)
arFormFields0(33) = &quot;SSN&quot;
arFormDBFields0(33) = &quot;SSN&quot;
arFormValues0(33) = Request(&quot;SSN&quot;)
arFormFields0(34) = &quot;CurrentAddress1&quot;
arFormDBFields0(34) = &quot;CurrentAddress1&quot;
arFormValues0(34) = Request(&quot;CurrentAddress1&quot;)
arFormFields0(35) = &quot;Repossession&quot;
arFormDBFields0(35) = &quot;Repossession&quot;
arFormValues0(35) = Request(&quot;Repossession&quot;)
arFormFields0(36) = &quot;CurrentAddress2&quot;
arFormDBFields0(36) = &quot;CurrentAddress2&quot;
arFormValues0(36) = Request(&quot;CurrentAddress2&quot;)
arFormFields0(37) = &quot;CurrentPayment&quot;
arFormDBFields0(37) = &quot;CurrentPayment&quot;
arFormValues0(37) = Request(&quot;CurrentPayment&quot;)
arFormFields0(38) = &quot;PreviousCity&quot;
arFormDBFields0(38) = &quot;PreviousCity&quot;
arFormValues0(38) = Request(&quot;PreviousCity&quot;)
arFormFields0(39) = &quot;CurrentGrossSalary&quot;
arFormDBFields0(39) = &quot;CurrentGrossSalary&quot;
arFormValues0(39) = Request(&quot;CurrentGrossSalary&quot;)
arFormFields0(40) = &quot;CoBuyerCurrentEmployerPhone&quot;
arFormDBFields0(40) = &quot;CoBuyerCurrentEmployerPhone&quot;
arFormValues0(40) = Request(&quot;CoBuyerCurrentEmployerPhone&quot;)
arFormFields0(41) = &quot;CurrentEmployer&quot;
arFormDBFields0(41) = &quot;CurrentEmployer&quot;
arFormValues0(41) = Request(&quot;CurrentEmployer&quot;)
arFormFields0(42) = &quot;OtherIncomeAmount&quot;
arFormDBFields0(42) = &quot;OtherIncomeAmount&quot;
arFormValues0(42) = Request(&quot;OtherIncomeAmount&quot;)
arFormFields0(43) = &quot;CoBuyerCustomerName&quot;
arFormDBFields0(43) = &quot;CoBuyerCustomerName&quot;
arFormValues0(43) = Request(&quot;CoBuyerCustomerName&quot;)
arFormFields0(44) = &quot;PreviousPositionTime&quot;
arFormDBFields0(44) = &quot;PreviousPositionTime&quot;
arFormValues0(44) = Request(&quot;PreviousPositionTime&quot;)
arFormFields0(45) = &quot;CoBuyerDOB&quot;
arFormDBFields0(45) = &quot;CoBuyerDOB&quot;
arFormValues0(45) = Request(&quot;CoBuyerDOB&quot;)
arFormFields0(46) = &quot;CurrentZipCode&quot;
arFormDBFields0(46) = &quot;CurrentZipCode&quot;
arFormValues0(46) = Request(&quot;CurrentZipCode&quot;)
arFormFields0(47) = &quot;CurrentLandlordName&quot;
arFormDBFields0(47) = &quot;CurrentLandlordName&quot;
arFormValues0(47) = Request(&quot;CurrentLandlordName&quot;)
arFormFields0(48) = &quot;PreviousOccupation&quot;
arFormDBFields0(48) = &quot;PreviousOccupation&quot;
arFormValues0(48) = Request(&quot;PreviousOccupation&quot;)
arFormFields0(49) = &quot;CurrentState&quot;
arFormDBFields0(49) = &quot;CurrentState&quot;
arFormValues0(49) = Request(&quot;CurrentState&quot;)
arFormFields0(50) = &quot;T1&quot;
arFormDBFields0(50) = &quot;T1&quot;
arFormValues0(50) = Request(&quot;T1&quot;)
arFormFields0(51) = &quot;WorkPhone&quot;
arFormDBFields0(51) = &quot;WorkPhone&quot;
arFormValues0(51) = Request(&quot;WorkPhone&quot;)
arFormFields0(52) = &quot;CoBuyerRelationship&quot;
arFormDBFields0(52) = &quot;CoBuyerRelationship&quot;
arFormValues0(52) = Request(&quot;CoBuyerRelationship&quot;)

FP_SaveFormFields fp_rs, arFormFields0, arFormDBFields0

If Request.ServerVariables(&quot;REMOTE_HOST&quot;) <> &quot;&quot; Then
FP_SaveFieldToDB fp_rs, Request.ServerVariables(&quot;REMOTE_HOST&quot;), &quot;Remote_computer_name&quot;
End If
If Request.ServerVariables(&quot;HTTP_USER_AGENT&quot;) <> &quot;&quot; Then
FP_SaveFieldToDB fp_rs, Request.ServerVariables(&quot;HTTP_USER_AGENT&quot;), &quot;Browser_type&quot;
End If
FP_SaveFieldToDB fp_rs, Now, &quot;Timestamp&quot;
If Request.ServerVariables(&quot;REMOTE_USER&quot;) <> &quot;&quot; Then
FP_SaveFieldToDB fp_rs, Request.ServerVariables(&quot;REMOTE_USER&quot;), &quot;User_name&quot;
End If

fp_rs.Update
FP_DumpError strErrorUrl, &quot;Cannot update the database&quot;

fp_rs.Close
fp_conn.Close

FP_FormConfirmation &quot;text/html; charset=windows-1252&quot;,_
&quot;Form Confirmation&quot;,_
&quot;Thank you for submitting the following information:&quot;,_
&quot;creditapp.asp&quot;,_
&quot;Return to the form.&quot;

End If
End If

Session.CodePage = Session(&quot;FP_OldCodePage&quot;)
Session.LCID = Session(&quot;FP_OldLCID&quot;)

%>
<HTML>
<HEAD>
<meta HTTP-EQUIV=&quot;Content-Type&quot; CONTENT=&quot;text/html; charset=windows-1252&quot;>
<meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot;>
<TITLE>creditapplication</TITLE>
</HEAD>
<BODY>
<H1>Credit Application&nbsp;&nbsp;&nbsp; <img border=&quot;0&quot; src=&quot;approved.gif&quot;></H1>
<HR>
<P>
AutoMaxx Motors will get you financed!&nbsp; Whether you have perfect credit,
bad credit or no credit, we work with several lenders making it easy for you to
drive home in your perfect vehicle today!</P>
<FORM METHOD=&quot;POST&quot; ACTION=&quot;--WEBBOT-SELF--&quot;>
<!--webbot bot=&quot;SaveDatabase&quot; suggestedext=&quot;asp&quot; u-asp-include-url=&quot;_fpclass/fpdbform.inc&quot; s-dataconnection=&quot;automaxxconnect&quot; s-recordsource=&quot;Customers&quot; u-database-url=&quot;automaxxwebdb.mdb&quot; s-builtin-fields=&quot;REMOTE_HOST HTTP_USER_AGENT Timestamp REMOTE_USER&quot; s-builtin-dbfields=&quot;Remote_computer_name Browser_type Timestamp User_name&quot; s-form-fields=&quot;DriversLicenseState PreviousPayment Bankruptcy PreviousState PreviousEmployerPhone DriversLicenseNumber CurrentCity CellPhone CoBuyerCurrentEmployer CoBuyerCurrentGrossMonthlyIncome ExpDate HomePhone PreviousZipCode PrimaryCustomerName DOB CurrentResidenceLength CoBuyerZipCode CoBuyerCurrentOccupation CoBuyerCurrentPositionTime CurrentEmployerPhone CurrentOccupation CurrentLandlordPhoneNumber PreviousAddress1 CurrentPositionTime CoBuyerAddress1 CoBuyerCity CurrentState1 PreviousAddress2 PreviousResidenceLength PreviousEmployerName OtherIncomeType CoBuyerAddress2 PreviousResidentialType SSN CurrentAddress1 Repossession CurrentAddress2 CurrentPayment PreviousCity CurrentGrossSalary CoBuyerCurrentEmployerPhone CurrentEmployer OtherIncomeAmount CoBuyerCustomerName PreviousPositionTime CoBuyerDOB CurrentZipCode CurrentLandlordName PreviousOccupation CurrentState T1 WorkPhone CoBuyerRelationship&quot; s-form-dbfields=&quot;DriversLicenseState PreviousPayment Bankruptcy PreviousState PreviousEmployerPhone DriversLicenseNumber CurrentCity CellPhone CoBuyerCurrentEmployer CoBuyerCurrentGrossMonthlyIncome ExpDate HomePhone PreviousZipCode PrimaryCustomerName DOB CurrentResidenceLength CoBuyerZipCode CoBuyerCurrentOccupation CoBuyerCurrentPositionTime CurrentEmployerPhone CurrentOccupation CurrentLandlordPhoneNumber PreviousAddress1 CurrentPositionTime CoBuyerAddress1 CoBuyerCity CurrentState1 PreviousAddress2 PreviousResidenceLength PreviousEmployerName OtherIncomeType CoBuyerAddress2 PreviousResidentialType SSN CurrentAddress1 Repossession CurrentAddress2 CurrentPayment PreviousCity CurrentGrossSalary CoBuyerCurrentEmployerPhone CurrentEmployer OtherIncomeAmount CoBuyerCustomerName PreviousPositionTime CoBuyerDOB CurrentZipCode CurrentLandlordName PreviousOccupation CurrentState T1 WorkPhone CoBuyerRelationship&quot; startspan --><input TYPE=&quot;hidden&quot; NAME=&quot;VTI-GROUP&quot; VALUE=&quot;0&quot;><!--#include file=&quot;_fpclass/fpdbform.inc&quot;--><!--webbot bot=&quot;SaveDatabase&quot; endspan i-checksum=&quot;40548&quot; --><P>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </P>
<BLOCKQUOTE>
<TABLE width=&quot;747&quot; height=&quot;20&quot; style=&quot;border-collapse: collapse&quot; bordercolor=&quot;#111111&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot;>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;14&quot;>
</TD>
<TD bgcolor=&quot;#BFEB94&quot; width=&quot;597&quot; height=&quot;14&quot;>
<p align=&quot;center&quot;>Please provide your <b>personal</b> information:
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
<i>Primary Applicant Name:</i>
<INPUT NAME=&quot;PrimaryCustomerName&quot; SIZE=20 tabindex=&quot;1&quot;> </TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
<i>Birthdate: </i>
<input type=&quot;text&quot; name=&quot;DOB&quot; size=&quot;20&quot; tabindex=&quot;2&quot;>&nbsp;&nbsp; <i>Social
Security #: </i>
<input type=&quot;text&quot; name=&quot;SSN&quot; size=&quot;20&quot; tabindex=&quot;3&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
<i>Drivers License
State: </i>
<input type=&quot;text&quot; name=&quot;DriversLicenseState&quot; size=&quot;3&quot; value=&quot;=PA&quot;>&nbsp;&nbsp;
<i>&nbsp;Number: </i> <input type=&quot;text&quot; name=&quot;DriversLicenseNumber&quot; size=&quot;10&quot; tabindex=&quot;4&quot;>&nbsp;&nbsp;
<i>Expiration Date: </i> <input type=&quot;text&quot; name=&quot;ExpDate&quot; size=&quot;10&quot; tabindex=&quot;5&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
<i>Have you ever had any repossessions&nbsp; </i>
<input type=&quot;checkbox&quot; name=&quot;Repossession&quot; value=&quot;ON&quot; tabindex=&quot;9&quot;>&nbsp;&nbsp;
<i>or filed for bankruptcy?</i>&nbsp;
<input type=&quot;checkbox&quot; name=&quot;Bankruptcy&quot; value=&quot;ON&quot; tabindex=&quot;10&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;15&quot; valign=&quot;top&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;10&quot; valign=&quot;top&quot;>
</TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD bgcolor=&quot;#BFEB94&quot; width=&quot;597&quot; height=&quot;15&quot;>
<p align=&quot;center&quot;>Please supply your <b>residential</b> information:</TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>Current Street Address: </i>
<INPUT NAME=&quot;CurrentAddress1&quot; SIZE=20 tabindex=&quot;11&quot;> </TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<i>Address (cont.): </i>
<INPUT NAME=&quot;CurrentAddress2&quot; SIZE=20 tabindex=&quot;12&quot;> </TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
&nbsp;<i>&nbsp;&nbsp; City, State, Zip Code: </i>
<INPUT NAME=&quot;CurrentCity&quot; SIZE=20 tabindex=&quot;13&quot;>,
<INPUT NAME=&quot;CurrentState1&quot; SIZE=5 value=&quot;=PA&quot; tabindex=&quot;14&quot;>&nbsp;
<INPUT NAME=&quot;CurrentZipCode&quot; SIZE=10 MAXLENGTH=12 tabindex=&quot;15&quot;></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<i>Home #: </i> <input type=&quot;text&quot; name=&quot;HomePhone&quot; size=&quot;10&quot; tabindex=&quot;6&quot;>&nbsp;
<i>Cell #: </i>
<input type=&quot;text&quot; name=&quot;CellPhone&quot; size=&quot;10&quot; tabindex=&quot;7&quot;> </TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Residential Status:
<input type=&quot;text&quot; name=&quot;T1&quot; size=&quot;20&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current Payment:
</i>
<input type=&quot;text&quot; name=&quot;CurrentPayment&quot; size=&quot;20&quot; tabindex=&quot;17&quot;></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp; Time at this residence: </i>
<input type=&quot;text&quot; name=&quot;CurrentResidenceLength&quot; size=&quot;20&quot; tabindex=&quot;18&quot;></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>Current Landlord Name:
<input type=&quot;text&quot; name=&quot;CurrentLandlordName&quot; size=&quot;20&quot; tabindex=&quot;19&quot;>&nbsp;&nbsp;
Phone #:&nbsp;
<input type=&quot;text&quot; name=&quot;CurrentLandlordPhoneNumber&quot; size=&quot;20&quot; tabindex=&quot;20&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>
----------------------------------------------------------------------------------------------------------------------- </TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp; Previous Street Address:
<input type=&quot;text&quot; name=&quot;PreviousAddress1&quot; size=&quot;20&quot; tabindex=&quot;21&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Address (cont.):
<input type=&quot;text&quot; name=&quot;PreviousAddress2&quot; size=&quot;20&quot; tabindex=&quot;22&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp; City, State, Zip Code:
<input type=&quot;text&quot; name=&quot;PreviousCity&quot; size=&quot;20&quot; tabindex=&quot;23&quot;>,
<input type=&quot;text&quot; name=&quot;PreviousState&quot; size=&quot;5&quot; tabindex=&quot;24&quot; value=&quot;PA&quot;>&nbsp;
<input type=&quot;text&quot; name=&quot;PreviousZipCode&quot; size=&quot;10&quot; tabindex=&quot;26&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Residential Status:
<select size=&quot;1&quot; name=&quot;PreviousResidentialType&quot; tabindex=&quot;27&quot;>
<option>--please select from list--</option>
<option>Rent</option>
<option>Own</option>
<option>Live with family or friends</option>
</select></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Previous Payment:
<input type=&quot;text&quot; name=&quot;PreviousPayment&quot; size=&quot;20&quot; tabindex=&quot;28&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
<i>&nbsp;&nbsp;&nbsp; Time at this residence:
<input type=&quot;text&quot; name=&quot;PreviousResidenceLength&quot; size=&quot;20&quot; tabindex=&quot;29&quot;></i></TD>
</TR>
<TR>
<TD width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; bgcolor=&quot;#BFEB94&quot; height=&quot;22&quot;>
<p align=&quot;center&quot;>Please give your <b>employment</b> history:</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current Employer : </i>
<input type=&quot;text&quot; name=&quot;CurrentEmployer&quot; size=&quot;20&quot; tabindex=&quot;30&quot;><i>&nbsp;
Phone #: </i>
<input type=&quot;text&quot; name=&quot;CurrentEmployerPhone&quot; size=&quot;20&quot; tabindex=&quot;31&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Current Occupation: </i>
<input type=&quot;text&quot; name=&quot;CurrentOccupation&quot; size=&quot;20&quot; tabindex=&quot;32&quot;>&nbsp; <i>
Time in position: </i>
<input type=&quot;text&quot; name=&quot;CurrentPositionTime&quot; size=&quot;20&quot; tabindex=&quot;33&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
Gross Salary: </i>
<input type=&quot;text&quot; name=&quot;CurrentGrossSalary&quot; size=&quot;20&quot; tabindex=&quot;35&quot;>&nbsp; <i>
Work Phone #: </i>
<input type=&quot;text&quot; name=&quot;WorkPhone&quot; size=&quot;10&quot; tabindex=&quot;8&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
---------------------------------------------------------------------------------------------------</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Previous Employer:
<input type=&quot;text&quot; name=&quot;PreviousEmployerName&quot; size=&quot;20&quot; tabindex=&quot;36&quot;> Phone #:
<input type=&quot;text&quot; name=&quot;PreviousEmployerPhone&quot; size=&quot;20&quot; tabindex=&quot;37&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp;&nbsp; Previous Occupation:
<input type=&quot;text&quot; name=&quot;PreviousOccupation&quot; size=&quot;20&quot; tabindex=&quot;38&quot;> Time in
position: <input type=&quot;text&quot; name=&quot;PreviousPositionTime&quot; size=&quot;20&quot; tabindex=&quot;39&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp;</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>If you have another source of income, please specify the type and amount:</i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp;<i>Type: <input type=&quot;text&quot; name=&quot;OtherIncomeType&quot; size=&quot;20&quot; tabindex=&quot;40&quot;>&nbsp;
Amount: <input type=&quot;text&quot; name=&quot;OtherIncomeAmount&quot; size=&quot;20&quot; tabindex=&quot;41&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;15&quot;>
</TD>
<TD width=&quot;597&quot; height=&quot;15&quot;>
</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot; bgcolor=&quot;#BFEB94&quot;>
<p align=&quot;center&quot;>Please enter <b>co-buyer</b> information.</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp;</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>Co-Buyer Name:
<input type=&quot;text&quot; name=&quot;CoBuyerCustomerName&quot; size=&quot;20&quot; tabindex=&quot;42&quot;>&nbsp;
Birthdate: <input type=&quot;text&quot; name=&quot;CoBuyerDOB&quot; size=&quot;20&quot; tabindex=&quot;42&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp; Street Address:
<input type=&quot;text&quot; name=&quot;CoBuyerAddress1&quot; size=&quot;20&quot; tabindex=&quot;43&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;&nbsp; Address (cont.):
<input type=&quot;text&quot; name=&quot;CoBuyerAddress2&quot; size=&quot;20&quot; tabindex=&quot;44&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp; City, State, Zip:
<input type=&quot;text&quot; name=&quot;CoBuyerCity&quot; size=&quot;20&quot; tabindex=&quot;45&quot;>,
<input type=&quot;text&quot; name=&quot;CurrentState&quot; size=&quot;3&quot; value=&quot;=PA&quot; tabindex=&quot;46&quot;>&nbsp;
<input type=&quot;text&quot; name=&quot;CoBuyerZipCode&quot; size=&quot;10&quot; tabindex=&quot;47&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp;</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>Current Employer : </i>
<input type=&quot;text&quot; name=&quot;CoBuyerCurrentEmployer&quot; size=&quot;20&quot; tabindex=&quot;48&quot;><i>&nbsp;
Phone #: </i>
<input type=&quot;text&quot; name=&quot;CoBuyerCurrentEmployerPhone&quot; size=&quot;20&quot; tabindex=&quot;49&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>&nbsp;Current Occupation: </i>
<input type=&quot;text&quot; name=&quot;CoBuyerCurrentOccupation&quot; size=&quot;20&quot; tabindex=&quot;50&quot;>&nbsp;
<i>Time in position: </i>
<input type=&quot;text&quot; name=&quot;CoBuyerCurrentPositionTime&quot; size=&quot;20&quot; tabindex=&quot;51&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp; <i>Gross Salary:
<input type=&quot;text&quot; name=&quot;CoBuyerCurrentGrossMonthlyIncome&quot; size=&quot;20&quot; tabindex=&quot;52&quot;></i></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
<i>What is your relationship with this person?</i>&nbsp;
<input type=&quot;text&quot; name=&quot;CoBuyerRelationship&quot; size=&quot;20&quot; tabindex=&quot;53&quot;></TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;22&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;22&quot;>
&nbsp;</TD>
</TR>
<TR>
<TD ALIGN=&quot;right&quot; width=&quot;140&quot; height=&quot;19&quot;>
&nbsp;</TD>
<TD width=&quot;597&quot; height=&quot;19&quot;>
<hr>
</TD>
</TR>
</TABLE>
</BLOCKQUOTE>
<INPUT TYPE=SUBMIT VALUE=&quot;Submit Form&quot;>
<INPUT TYPE=RESET VALUE=&quot;Reset Form&quot;>
</FORM>
<HR>
<H5>
Revised:
<!--WEBBOT BOT=TimeStamp
S-Type=&quot;EDITED&quot;
S-Format=&quot;%m/%d/%y&quot;
--></H5>
</BODY>
</HTML>
 
I love this line
' FP_ASP ASP Automatically generated by a Frontpage Component. Do not Edit.

is there any instance that you can actually listen to that comment? [lol]


what do you mean by I have to reselect the database connection to use

sorry, slightly confused on what the problem is and that code is pretty ugly to try and work through. _________________________________________________________
for the best results to your questions: FAQ333-2924
[sub]01001111 01101110 01110000 01101110 01110100[/sub]
onpnt2.gif
[sup] [/sub]
 
That problem is now resolved. For some reason, however, it wasn't saving the chages.

Microsoft does love to control and instill fear (even if it is just about a line of coding )

:)

Would it be easier if I gave you the server username/password?
 
It makes you want to find the M$ FP programming team and shake them warmly...............



by the throat!


Chris.
Indifference will be the downfall of mankind, but who cares?
 
It makes you want to find the M$ FP programming team and shake them warmly...............
by the throat!


Go right ahead... as soon as you release your own version of a WYSIWYG HTML generator that contains the same feature set and produces lovely code that we would all be proud to use! LOL

[cannon] ..... (HTML WYSIWYG Editors)

-pete
 
SO can anyone help me figure out why the information entered doesn't save to the database?
 
just a thought and maybe you should check if the webpage is connecting successfully in the database
Check this ----> u-database-url=&quot;automaxxwebdb.mdb&quot; and your connection string &quot;automaxxconnect_ConnectionString&quot;.






[morning] I just love coffee.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top