Is it possible to redirect to an URL after submitting the form where the last part of the URL is based on the chosen value in a radiobox?
Radiobox with values 1, 2, 3, 4, 5 where:
1 --> abc
2 --> def
3 --> ghi
4 --> jkl
5 --> mno
Redirect URL where, based on the chosen value, would be https://domain.com/link/*parameter* (for example 'ghi' which results in https://domain.com/link/)https://domain.com/link/ghi
I am trying to do this with the 'Extra params' of the redirect action, but I am not able to append the value of the radiobox to the URL.
Radiobox with values 1, 2, 3, 4, 5 where:
1 --> abc
2 --> def
3 --> ghi
4 --> jkl
5 --> mno
Redirect URL where, based on the chosen value, would be https://domain.com/link/*parameter* (for example 'ghi' which results in https://domain.com/link/)https://domain.com/link/ghi
I am trying to do this with the 'Extra params' of the redirect action, but I am not able to append the value of the radiobox to the URL.
I dunno about v5, but it's trivial to do in v6.
Hi JBS,
The Redirect action will add parameters in the form ¶m_name=value - if you want to add it in the form /value then you will need to use Custom Code.
Bob
The Redirect action will add parameters in the form ¶m_name=value - if you want to add it in the form /value then you will need to use Custom Code.
Bob
Thanks Bob. Is there any documentation or other topic that you know where I can start with to accomplish this?
This topic is locked and no more replies can be posted.