Ask a Question related to Macromedia ColdFusion, Design and Development.
-
xfl #1
Help! - Passing form data between multiple pages
Hi,
I am working on a multiple pages survey, right now if my user fill out page
1, click next, then fill out page2, page3, his answer will be there when he
goes back to page2, but if the user goes back to page 1, change some his
answeres, then click next, his page 2 answers are all gone.
So I would to allow user still can go to page 1 to change answers, then click
next will still see their page 2 answeres there if there is no changes. Please
advise, I am in despair now. I tried session variables, but maybe I did not
use it properly. If anybody has done it before. Could you please help me?
Thanks a lot.
XFL
xfl Guest
-
Splitting an ASP.NET Form on Multiple Pages
Hey, I am pretty new to web development and i am trying to create a form using ASP.NET that spans more than one page. The reason for this is the... -
Passing Data between CF and Java pages
I've got a ColdFusion page on one server and a Java page on another server. I need to make a request from the CF page for data such as "Company... -
passing data between pages... one has a drop down form
I need to pass a zip code from a drop down form on one .cfm (passing.cfm) to another. How does the receiving page (receiving.cfm) understand which... -
<form> to multiple pages
I would like the following form to send to the https that is shown, but I would also like it to send the same info to another page at the same time.... -
Best way to move data across multiple pages?
I am trying to build a few pages basically emulating a wizard that you might find in a Windows product. A few fields to fill out on one page, move... -
WestSide #2
Re: Help! - Passing form data between multiple pages
Hi,
It seems to be your not updating the session variables. If the user goes back
to page 1, and changes some answers then you need to update the session
variable...
<cfif IsDefined("session.firstName")>
<cfset session.firstName = form.firstName>
</cfif>
Something like that, you could also loop, depending on how many form fields
you have...
HTH
-Westside
-Westside
WestSide Guest
-
Brian Hogue #3
Re: Help! - Passing form data between multiple pages
XFL -
How about this?
<cfif Not IsDefined("session.yourVariable")><cfset session.yourVariable =
yourFormValue></cfif>
-brian
"xfl" <webforumsuser@macromedia.com> wrote in message
news:d62o85$ik6$1@forums.macromedia.com...page> Hi,
>
> I am working on a multiple pages survey, right now if my user fill outhe> 1, click next, then fill out page2, page3, his answer will be there whenclick> goes back to page2, but if the user goes back to page 1, change some his
> answeres, then click next, his page 2 answers are all gone.
>
> So I would to allow user still can go to page 1 to change answers, thenPlease> next will still see their page 2 answeres there if there is no changes.not> advise, I am in despair now. I tried session variables, but maybe I didme?> use it properly. If anybody has done it before. Could you please help> Thanks a lot.
>
> XFL
>
Brian Hogue Guest



Reply With Quote

