• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
Locked
0

Contact Form Custom Thank you page

New Here ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

Is it possible to redirect a defualt contact form from business catalyst to a custom thank you page? Im setting up a mobile version of a website and want it to redirect to custom page with jquery mobile added to it

TOPICS
Content management and modules

Views

7.1K

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

LEGEND , Nov 20, 2012 Nov 20, 2012

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.

Votes

Translate

Translate
LEGEND ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

so basically this part in the html

action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}"

gets changed to

action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={module_otype}&EID={module_eid}&CID={module_cid}&PageID=/Results"

or is does it become

action="/results.html"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

The first one.

And for nice code wise which I forgot to add change & to & which is the html entitiy of &

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

All right because coding is still new to me, I'm just a little confused. By adding "&ampPageID=/Results", you dont mean literally adding that verbatim? or does it become "&ampThanks.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 

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Nov 20, 2012 Nov 20, 2012

Copy link to clipboard

Copied

action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={mo dule_otype}&EID={module_eid}&CID={module_cid}&PageID=/Results"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Nov 21, 2012 Nov 21, 2012

Copy link to clipboard

Copied

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?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Nov 27, 2013 Nov 27, 2013

Copy link to clipboard

Copied

action="/FormProcessv2.aspx?WebFormID=48363&OID={module_oid}&OTYPE={mo dule_otype}&EID={module_eid}&CID={module_cid}&PageID=/thanks.html"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 31, 2014 Mar 31, 2014

Copy link to clipboard

Copied

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!

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Mar 31, 2014 Mar 31, 2014

Copy link to clipboard

Copied

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"

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 31, 2014 Mar 31, 2014

Copy link to clipboard

Copied

@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.

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 21, 2018 Feb 21, 2018

Copy link to clipboard

Copied

LATEST

Hi Liam

Are you able to recirect to a page on another url ? e.g.

CID=0&PageID=http://www.xyzco.uk/"> ?

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines