|
| A R C H I V E D M E S S A G E |
|
Subject: Passing Personalisation TAGs to subsequent success pages |
| Posted: 03/15/2004 at 3:55:24 am |
| By: ianclarke |
| Hi Seth
Is it possible to keep transferring the personalisation TAGs through subsequent success pages i.e. having collected the firstname field on page1.html and sent the user to successpage1.html the user sees his/her first name. After filling in successpage1.html the user is sent to successpage2.html. Is it possible to get the user's first name to appear on successpage2.html?
Many thanks in anticipation.
Ian | |
|
|
Subject: Re: Passing Personalisation TAGs to subsequent success pages |
| Posted: 03/15/2004 at 4:13:35 am |
| By: ianclarke |
| Seth
I have been able to answer my own question. To save you the trouble (as, no doubt, you know the answer) this may be of help to others
On page1.html collect the firstname
On successpage1.html use
<input type="hidden" name="firstname" value="<%firstname%>" />
to carry through the value of firstname.
On successpage2.html use <%firstname%> as usual.
I hope this would have been your answer!
Best wishes
Ian | |
|
|
Subject: Re: Passing Personalisation TAGs to subsequent success pages |
| Posted: 03/15/2004 at 5:56:57 am |
| By: Seth Knorr |
|
|