passing form data

  • Thread starter Thread starter Michael Stumpo
  • Start date Start date
M

Michael Stumpo

I have a problem when passing form data. I have 2 pages,
one is called new.asp and the other is newpreview.asp.

New.asp passes the form data to newpreview.asp using:

<%=Request.Form("formfieldname")%> for each line in the
form.

The newpreview.asp page properly displays the
information, but when posting it to the database, the
auto-generated confirmation page is blank.

I had originally created newpreview.asp from new.asp (at
first I was just using new.asp to post the data and it
was working perfectly).

Any ideas as to why this is not working?

Do I need to add hidden form values for each line in the
form to post?

-M
 
Hi Michael.....

Have you taken a look at the "auto" generated confirmation code to see if it
is correct? ...ie has the same names, etc.......

Do the records actually post to the database?

Best to you.....
Tom Gahagan
eThomaston.com
 
The records exist in the database but are blank.

The auto conformation page is also blank.

-M
 
Sounds like the confirmation page is using the record from the database....
or perhaps that is why the fields are blank (?)

So the routine is appending a record to the database but the info is not
being put into the fields. Correct?

What method are you using to load the info from the form into the fields?

Tom G
 
Back
Top