getting the customers email address from the form into the tracking code on the confirmation page

E

Edwin Hannan

Hi all

I have been messing with this for some time now and I am no further down the
road.

if someone can have a look at a test form at
http://www.metrofinance.co.uk/mortageenqtest.htm and the correspondeng
confirmation page thankyou_test.asp (you can test as much as you like to
view the source of each page)

The form uses a custom forms handler SendIt from webs unlimited and this
works great - no problem with that at all.

The thankyou_test.asp page has some tracking code in the body.

The challenge is to get the customers email address from the form into a
variable wgOrderreference in the thankyou page.

I have been trying to assign the email address directly to this variable)
and even though it looks like success..the tracking company do not get the
email address at all.

Can anyone suggest any code..anywhere to get this to work with this form and
the custom form handler..using MS Frontpage 2000

cheers

Ed
 
E

Edwin Hannan

well mike..??

anybody??

I guess I am wasting my time asking for help here..so I guess I am on my own
again with trawling the net for asp snippets and reading my books.. and keep
trying on my own to get this to work with MS Frontpage..

I wont be coming back here

--
 
M

MD Websunlimited

That works.

Edwin,

The problem is that there needs to be double quotes around the supplied var.

''''''''''''''''''''''''

' <run time variables> '

''''''''''''''''''''''''

[email protected] 'if you view the source you can see a email address is assigned to this var

wgValue = 50 ' float, value of transaction eg 5.50 (please exclude commas and currency symbols)

wgOrderReference = Server.URLEncode("(e-mail address removed)") ' string, if your order references are NOT unique, please let us know asap via (e-mail address removed).

wgEventID = 722 ' in



It should be

Email="(e-mail address removed)"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top