Re: Re-Posting Data
From: Kris Eiben (eibenkthisisforspammers_at_yahoo.com)
Date: 07/13/04
- Next message: James Baker: "Bad practices"
- Previous message: James Baker: "Re-Posting Data"
- In reply to: James Baker: "Re-Posting Data"
- Next in thread: Jeff Cochran: "Re: Re-Posting Data"
- Messages sorted by: [ date ] [ thread ]
Date: Tue, 13 Jul 2004 15:33:23 -0400
No simpler way AFAIK. Of course, you can make it easy on yourself by
looping over the collection (warning: I'm coding from memory, syntax may
be off).
<%
for each i in request.form
response.write "<input type='hidden' name='" & i & "' value='" &
request.form(i) & "'>"
next
%>
"James Baker" <cppjames@hotmail.com> wrote in message
news:eYg8y4QaEHA.2516@TK2MSFTNGP10.phx.gbl...
> I'm building a wizard-type site and I have a form that has a fair
amount of
> information being posted page to page until it reaches the end where
it has
> all of the data from Page 1 - Page 5.
>
> For future reference more than anything...is there a way to post all
of the
> data coming from a previous page to the next page? Basically I just
wrote
> out all of the values I received on each page into hidden variables
and then
> posted that to the next page every time. Is there a simpler way?
>
> Thanks,
> James
>
>
- Next message: James Baker: "Bad practices"
- Previous message: James Baker: "Re-Posting Data"
- In reply to: James Baker: "Re-Posting Data"
- Next in thread: Jeff Cochran: "Re: Re-Posting Data"
- Messages sorted by: [ date ] [ thread ]
Relevant Pages
|