Forum Moderators: open
on (press) {
getURL("http://www.example.com/enquiries/email_add.asp?sEmail="+ sEmail, "PopUp");
}
However this is not sending the email address in the Querystring. It is simple requesting the page [example.com...]
Is there something obvious and simple that I am doing wrong?
Many thanks in advance.
U r not doin anything wrong. This should work. Just insert a trace, and check the output. like this:
on (press) {
trace(sEmail);
getURL("http://www.example.com/enquiries/email_add.asp?sEmail="+sEmail, "PopUp");
}
Now test the file. If u clic submit w/out entering anything, u'll get the output as *undefined*, and the popup will have the url
[example.com...]
Now type an emailid, and press submit. U should get the following:
[example.com...]
Hope this helped?
Regards.... Firestarter