%
' FP_ASP ASP Automatically generated by a Frontpage Component. Do not Edit.
On Error Resume Next
strErrorUrl = "../error.html"
If Request.ServerVariables("REQUEST_METHOD") = "POST" Then
If Request.Form("VTI-GROUP") = "0" Then
Err.Clear
Set fp_conn = Server.CreateObject("ADODB.Connection")
FP_DumpError strErrorUrl, "Cannot create connection"
Set fp_rs = Server.CreateObject("ADODB.Recordset")
FP_DumpError strErrorUrl, "Cannot create record set"
fp_conn.Open Application("Zillions.Regs_ConnectionString")
FP_DumpError strErrorUrl, "Cannot open database"
fp_rs.Open "Registrations", fp_conn, 1, 3, 2 ' adOpenKeySet, adLockOptimistic, adCmdTable
FP_DumpError strErrorUrl, "Cannot open record set"
fp_rs.AddNew
FP_DumpError strErrorUrl, "Cannot add new record set to the database"
Dim arFormFields0(9)
Dim arFormDBFields0(9)
arFormFields0(0) = "Email"
arFormDBFields0(0) = "Email"
arFormFields0(1) = "City"
arFormDBFields0(1) = "City"
arFormFields0(2) = "FirstName"
arFormDBFields0(2) = "First"
arFormFields0(3) = "Zip"
arFormDBFields0(3) = "Zip"
arFormFields0(4) = "LastName"
arFormDBFields0(4) = "Last"
arFormFields0(5) = "Country"
arFormDBFields0(5) = "Country"
arFormFields0(6) = "State"
arFormDBFields0(6) = "State"
arFormFields0(7) = "No"
arFormDBFields0(7) = "DeleteInd"
arFormFields0(8) = "Comments"
arFormDBFields0(8) = "Feedback"
FP_SaveFormFields fp_rs, arFormFields0, arFormDBFields0
fp_rs.Update
FP_DumpError strErrorUrl, "Cannot update the database"
fp_rs.Close
fp_conn.Close
Response.Redirect "../confirmation.asp"
End If
End If
%>
Zillions.com -- Send Feedback