duplo1
Posts: 67
|
| Posted: 06/22/2005, 12:49 PM |
|
I guess I did not explain my self properly (CCStudio 2.2/ASP)
I am writing a Registration Form for an event with several chapters (Pages).
Page 1: Editable Grid with personal Information, e.g. Last Name.
Submit Button
Page 2: Editable Grid with Hotel Information
Submit Button
Page 3: Editable Grid with Flight Information
and so on
What do I have to do to forward the LastName from Page 1 to Page 2 using the submit button ??
Do I save the LastName as a control value and on all other pages I retrieve this control value ???
I know I could use LINKS specifiying parameters, but I do not want that ....
Please help ...
|
 |
 |
wkempees
Posts: 1679
|
| Posted: 06/22/2005, 4:28 PM |
|
I it is only the name you would like to propagate, my solution would be to CCSetSession("myvariable","value") in the first form after completion and then in the next X forms CCGetSession("myvariable") into the appropriate label.
Also check the MultiFormRegistration example.
Good hunting.
_________________
Origin: NL, T:GMT+1 (Forumtime +9)
CCS3/4.01.006 PhP, MySQL .Net/InMotion(Vista/XP, XAMPP)
if you liked this info PAYPAL me: http://donate.consultair.eu
|
 |
 |
|