How to URL encode fields included in a Success Message
-
I have a two-step process. The step 1 form has a success message with a URL to step 2 that includes the email address field:
<a >Complete your profile</a>
In the step 2 form there’s a hidden field that gets the query string variable using
{querystring:email}
. The problem is that the email address is not encoded, so if there’s a + in the email (for example “[email protected]” which is a valid email) it’s being converted to a space in the hidden field’s value, so it’s populated as “myname [email protected]”.Is there another way to include a field’s value in a URL so that it’s encoded?
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- You must be logged in to reply to this topic.