-
1. Re: Contact Form Custom Thank you page
Liam Dilley Nov 20, 2012 3:59 PM (in response to mhartington)To do this you need to append the following to your web forms action URL:
action=/FormProcessv2.aspx?........
change to:
action=/FormProcessv2.aspx?........&PageID=/Results
So you basically adding &PageID=/Results to the end.
-
2. Re: Contact Form Custom Thank you page
mhartington Nov 20, 2012 8:17 PM (in response to Liam Dilley)so basically this part in the html
action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={module_otype}&EID={mo dule_eid}&CID={module_cid}"
gets changed to
action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={module_otype}&EID={mod ule_eid}&CID={module_cid}&PageID=/Results"
or is does it become
action="/results.html"
-
3. Re: Contact Form Custom Thank you page
Liam Dilley Nov 20, 2012 8:25 PM (in response to mhartington)The first one.
And for nice code wise which I forgot to add change & to & which is the html entitiy of &
-
4. Re: Contact Form Custom Thank you page
mhartington Nov 20, 2012 8:36 PM (in response to Liam Dilley)All right because coding is still new to me, I'm just a little confused. By adding "&PageID=/Results", you dont mean literally adding that verbatim? or does it become "&Thanks.html=/Results"
Sorry for not understanding completely what you mean, I do a lot of graphic design work for websites and apps but never actually had to code one myself so this is a bit foreign to me
-
5. Re: Contact Form Custom Thank you page
Liam Dilley Nov 20, 2012 11:19 PM (in response to mhartington)action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={mo dule_otype}&EID={module_eid}&CID={module_cid}&PageID=/Results"
-
6. Re: Contact Form Custom Thank you page
mhartington Nov 21, 2012 6:07 AM (in response to Liam Dilley)But what is that doing to redirect my form to the custom thank you page? Don't I need to point to the "thanks.html" somehow?
-
7. Re: Contact Form Custom Thank you page
Dan Fallon (Headjam) Nov 27, 2013 7:37 PM (in response to mhartington)action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={mo dule_otype}&EID={module_eid}&CID={module_cid}&PageID=/thanks.html"
-
8. Re: Contact Form Custom Thank you page
getyler3 Mar 31, 2014 11:19 AM (in response to Dan Fallon (Headjam))How might I redirect to a custom Thank You page after using an Email Series web form where the form Action is different than above... action="/CampaignProcess.aspx?ListID=67952"
Using action="/CampaignProcess.aspx?ListID=67952&PageID=/thank-you.htm doesn't work. It still redirects me to "Newsletter Subscription: Your request to subscribe to this newsletter was successful." Or can you just let me know where I can change this newsletter page's default text... I could just replace it with the html from my thank you page, but can't find where that is.
Would also like to disable the double opt-in but again, the documented way of doing this requires adding &OPTIN=true to the default form action, not the CampaignProcess.aspx above. Any ideas? Thanks!
-
9. Re: Contact Form Custom Thank you page
getyler3 Mar 31, 2014 4:47 PM (in response to getyler3)Figured it out... put the optin code first, then the pageID code after it and it works...
action="/CampaignProcess.aspx?ListID=67952&OPTIN=true&PageID=/thank-you"
-
10. Re: Contact Form Custom Thank you page
Liam Dilley Mar 31, 2014 5:18 PM (in response to mhartington)@mhartington
That is what I linked. As a note you do not need .html on your pages for pages to render. Clean urls
@getyler3
Yep, the redirect should be the very last paramater.



